mirror of
https://github.com/material-components/material-components-android.git
synced 2026-02-05 03:58:19 +08:00
Resolves https://github.com/material-components/material-components-android/pull/579 GIT_ORIGIN_REV_ID=f0d29daa3e75b1e26f3ef8a297a42e406f0f8878 PiperOrigin-RevId: 271634122
34 lines
739 B
Groovy
34 lines
739 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
applicationId "io.material.materialthemebuilder"
|
|
minSdkVersion 23
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
//MDC
|
|
api project(':lib')
|
|
|
|
// Kotlin
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
|
|
|
|
// AndroidX
|
|
implementation compatibility("appcompat")
|
|
implementation compatibility("constraintlayout")
|
|
}
|