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'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
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
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2018-08-30 09:29:30 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
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')
|
2019-09-17 19:36:13 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2020-07-14 19:47:41 +00:00
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha01'
|
2020-07-13 20:39:47 +00:00
|
|
|
implementation 'androidx.preference:preference:1.1.1'
|
2018-11-05 13:53:07 +00:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2018-07-27 13:07:33 +00:00
|
|
|
// Used for the list preference classes
|
2020-05-24 18:04:50 +00:00
|
|
|
def material_dialog_version = "0.9.6.0"
|
|
|
|
implementation "com.afollestad.material-dialogs:core:$material_dialog_version"
|
|
|
|
implementation "com.afollestad.material-dialogs:commons:$material_dialog_version"
|
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
|
|
|
}
|