Simple-Commons/commons/build.gradle

44 lines
1.3 KiB
Groovy
Raw Normal View History

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'
2016-12-10 23:33:47 +00:00
android {
compileSdkVersion propCompileSdkVersion
2018-04-27 17:13:30 +00:00
buildToolsVersion propBuildToolsVersion
2016-12-10 23:33:47 +00:00
defaultConfig {
minSdkVersion propMinSdkVersion
targetSdkVersion propTargetSdkVersion
versionCode propVersionCode
versionName propVersionName
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-11-18 16:42:30 +00:00
api 'androidx.appcompat:appcompat:1.0.2'
2018-12-17 20:20:18 +00:00
api 'com.github.ajalt.reprint:core:3.3.0@aar'
implementation 'com.google.android.material:material:1.0.0'
2019-02-16 15:35:07 +00:00
implementation 'com.github.bumptech.glide:glide:4.9.0'
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"
2018-12-17 20:20:18 +00:00
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.duolingo.open:rtl-viewpager:1.0.3'
2017-09-17 20:50:59 +00:00
2019-02-16 15:35:07 +00:00
kapt 'com.github.bumptech.glide:compiler:4.9.0'
2016-12-11 10:12:39 +00:00
}
apply from: '../bintray-upload.gradle'