Simple-Commons/commons/build.gradle
Paul Akhamiogu dd7a908c64 try to fix
2021-08-25 02:06:20 +01:00

50 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
versionCode 1
versionName "1.0.0"
}
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.core:core-ktx:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
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.2"
api 'androidx.appcompat:appcompat:1.2.0'
api 'com.github.ajalt.reprint:core:3.3.2@aar'
api 'com.google.android.material:material:1.3.0'
api 'com.google.code.gson:gson:2.8.6'
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'