2019-08-10 22:03:11 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
consumerProguardFiles 'consumer-rules.pro'
|
2019-08-11 15:58:02 +02:00
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
2019-08-10 22:03:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation 'androidx.core:core-ktx:1.0.2'
|
2019-08-11 15:58:02 +02:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha09'
|
2019-08-10 22:03:11 +02:00
|
|
|
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
|
|
|
}
|