2016-12-10 23:33:47 +00:00
|
|
|
apply plugin: 'com.android.library'
|
2016-12-11 10:12:39 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-08-20 17:46:52 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-09-27 08:04:44 +00:00
|
|
|
apply plugin: 'maven-publish'
|
2016-12-10 23:33:47 +00:00
|
|
|
|
|
|
|
android {
|
2016-12-17 22:51:44 +00:00
|
|
|
compileSdkVersion propCompileSdkVersion
|
2016-12-10 23:33:47 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-12-17 22:51:44 +00:00
|
|
|
minSdkVersion propMinSdkVersion
|
|
|
|
targetSdkVersion propTargetSdkVersion
|
2016-12-10 23:33:47 +00:00
|
|
|
}
|
2016-12-11 10:12:39 +00:00
|
|
|
|
2016-12-10 23:33:47 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-11-07 14:08:58 +00:00
|
|
|
consumerProguardFiles 'proguard-rules.pro'
|
2016-12-10 23:33:47 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-11 10:12:39 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-12-10 23:33:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-27 16:46:27 +00:00
|
|
|
implementation 'com.andrognito.patternlockview:patternlockview:1.0.0'
|
2018-04-22 21:30:00 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2021-09-26 21:42:48 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
|
2020-08-19 20:49:25 +00:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-02-27 11:38:58 +00:00
|
|
|
implementation 'joda-time:joda-time:2.10.3'
|
2021-10-04 17:26:27 +00:00
|
|
|
implementation "androidx.exifinterface:exifinterface:1.3.3"
|
2021-08-24 11:50:01 +00:00
|
|
|
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha03"
|
2019-05-02 17:32:32 +00:00
|
|
|
|
2021-10-10 12:33:13 +00:00
|
|
|
api 'com.github.tibbi:reprint:04b2293bd3'
|
2021-10-04 17:26:27 +00:00
|
|
|
api 'androidx.core:core-ktx:1.6.0'
|
|
|
|
api 'androidx.appcompat:appcompat:1.3.1'
|
|
|
|
api 'com.google.android.material:material:1.4.0'
|
2021-09-20 20:37:47 +00:00
|
|
|
api 'com.google.code.gson:gson:2.8.8'
|
2019-05-02 17:32:32 +00:00
|
|
|
api 'com.duolingo.open:rtl-viewpager:1.0.3'
|
2017-09-17 20:50:59 +00:00
|
|
|
|
2020-05-05 14:09:37 +00:00
|
|
|
api 'com.github.bumptech.glide:glide:4.10.0'
|
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
|
2016-12-11 10:12:39 +00:00
|
|
|
}
|
2021-09-27 08:04:44 +00:00
|
|
|
|
|
|
|
project.afterEvaluate {
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
release(MavenPublication) {
|
|
|
|
from components.release
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|