Simple-Commons/commons/build.gradle
darthpaul 8b1fd88db9 Merge branch 'master' into feat/scoped-storage
# Conflicts:
#	commons/build.gradle
#	commons/src/main/kotlin/com/simplemobiletools/commons/activities/BaseSimpleActivity.kt
#	commons/src/main/kotlin/com/simplemobiletools/commons/dialogs/PropertiesDialog.kt
2021-11-04 18:48:44 +00:00

49 lines
1.6 KiB
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 30
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
consumerProguardFiles 'proguard-rules.pro'
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
}
dependencies {
implementation 'com.andrognito.patternlockview:patternlockview:1.0.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'joda-time:joda-time:2.10.3'
implementation "androidx.exifinterface:exifinterface:1.3.3"
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha03"
api 'com.github.tibbi:reprint:2f49ba01bb'
api 'androidx.core:core-ktx:1.6.0'
api 'androidx.appcompat:appcompat:1.3.1'
api 'com.google.android.material:material:1.4.0'
api 'com.google.code.gson:gson:2.8.8'
api 'com.duolingo.open:rtl-viewpager:1.0.3'
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'
}
//apply from: '../bintray-upload.gradle'