Gaetan Muller 03cbd15f1c Update AndroidX dependencies
Resolves https://github.com/material-components/material-components-android/pull/579

GIT_ORIGIN_REV_ID=f0d29daa3e75b1e26f3ef8a297a42e406f0f8878
PiperOrigin-RevId: 271634122
2019-09-27 16:35:25 -04:00

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")
}