Simple-Commons/commons/build.gradle

54 lines
1.8 KiB
Groovy
Raw Normal View History

apply plugin: "com.android.library"
apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"
apply plugin: "kotlin-kapt"
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 {
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"
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.documentfile:documentfile:1.0.1"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2021-10-04 17:26:27 +00:00
implementation "androidx.exifinterface:exifinterface:1.3.3"
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha04"
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"
api "androidx.core:core-ktx:1.8.0"
api "androidx.appcompat:appcompat:1.5.0"
api "com.google.android.material:material:1.8.0"
api "com.google.code.gson:gson:2.9.1"
api "com.duolingo.open:rtl-viewpager:2.0.0"
api "com.github.bumptech.glide:glide:4.13.2"
kapt "com.github.bumptech.glide:compiler:4.13.2"
annotationProcessor "com.github.bumptech.glide:compiler:4.13.2"
2022-11-02 15:59:21 +00:00
api "androidx.room:room-runtime:2.4.3"
kapt "androidx.room:room-compiler:2.4.3"
annotationProcessor "androidx.room:room-compiler:2.4.3"
2016-12-11 10:12:39 +00:00
}