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