2018-07-27 13:07:33 +00:00
|
|
|
apply plugin: 'com.android.library'
|
2018-12-05 15:35:22 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-07-27 13:07:33 +00:00
|
|
|
android {
|
2019-09-02 14:51:53 +00:00
|
|
|
compileSdkVersion 29
|
2018-07-27 13:07:33 +00:00
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
2020-02-01 17:53:26 +00:00
|
|
|
targetSdkVersion 29
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2021-09-08 18:30:20 +00:00
|
|
|
minifyEnabled true
|
2018-07-27 13:07:33 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-12-05 15:35:22 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2021-09-08 18:30:20 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
|
|
implementation 'com.google.android.material:material:1.4.0'
|
2020-12-03 15:01:27 +00:00
|
|
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
2018-11-05 13:53:07 +00:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2021-09-08 18:30:20 +00:00
|
|
|
|
2019-09-01 13:32:36 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|