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'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-07-27 18:37:33 +05:30
|
|
|
android {
|
2019-09-02 20:21:53 +05:30
|
|
|
compileSdkVersion 29
|
2018-07-27 18:37:33 +05:30
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
2020-02-01 23:23:26 +05:30
|
|
|
targetSdkVersion 29
|
2018-07-27 18:37:33 +05:30
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
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')
|
2020-02-05 10:10:47 +05:30
|
|
|
implementation project(':fonts')
|
2019-09-18 01:06:13 +05:30
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2020-02-01 23:23:26 +05:30
|
|
|
implementation 'com.google.android.material:material:1.2.0-alpha04'
|
2019-09-18 01:06:13 +05:30
|
|
|
implementation 'androidx.preference:preference:1.1.0'
|
2018-11-05 19:23:07 +05:30
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2018-07-27 18:37:33 +05:30
|
|
|
// Used for the list preference classes
|
2019-09-18 01:06:13 +05:30
|
|
|
implementation 'com.afollestad.material-dialogs:core:3.1.1'
|
|
|
|
implementation 'com.afollestad.material-dialogs:input:3.1.1'
|
|
|
|
implementation 'com.afollestad.material-dialogs:color:3.1.1'
|
2019-09-29 23:54:47 +05:30
|
|
|
implementation 'com.afollestad.material-dialogs:bottomsheets:3.1.1'
|
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
|
|
|
}
|