Simple-Commons/commons/build.gradle

58 lines
2 KiB
Groovy
Raw Normal View History

plugins {
id "com.android.library"
id "kotlin-android"
id "kotlin-android-extensions"
id "kotlin-kapt"
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlin_version"
}
2016-12-10 23:33:47 +00:00
android {
compileSdkVersion propCompileSdkVersion
2016-12-10 23:33:47 +00:00
defaultConfig {
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"
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-11 10:12:39 +00:00
}
2016-12-10 23:33:47 +00:00
}
dependencies {
2018-04-22 21:30:00 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.documentfile:documentfile:1.0.1"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2023-07-10 21:18:52 +00:00
implementation "androidx.exifinterface:exifinterface:1.3.6"
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha05"
2022-11-02 15:59:21 +00:00
implementation "com.googlecode.ez-vcard:ez-vcard:0.11.3"
2019-05-02 17:32:32 +00:00
api "joda-time:joda-time:2.11.0"
api "com.github.tibbi:RecyclerView-FastScroller:5a95285b1f"
api "com.github.tibbi:reprint:2cb206415d"
2023-06-22 21:08:10 +00:00
api "com.github.duolingo:rtl-viewpager:940f12724f"
api "com.github.aritraroy:PatternLockView:a90b0d4bf0"
api "androidx.core:core-ktx:1.8.0"
2023-07-10 21:18:52 +00:00
api "androidx.appcompat:appcompat:1.6.1"
api "com.google.android.material:material:1.9.0"
api "com.google.code.gson:gson:2.9.1"
2023-07-10 21:09:57 +00:00
api "com.github.bumptech.glide:glide:4.15.1"
kapt "com.github.bumptech.glide:compiler:4.15.1"
annotationProcessor "com.github.bumptech.glide:compiler:4.15.1"
2022-11-02 15:59:21 +00:00
2023-07-10 21:18:52 +00:00
api "androidx.room:room-runtime:2.5.2"
kapt "androidx.room:room-compiler:2.5.2"
annotationProcessor "androidx.room:room-compiler:2.5.2"
2016-12-11 10:12:39 +00:00
}