2016-12-10 23:22:27 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-12-11 10:12:39 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-12-10 23:22:27 +00:00
|
|
|
|
|
|
|
android {
|
2016-12-18 09:55:18 +00:00
|
|
|
compileSdkVersion propCompileSdkVersion
|
2016-12-17 10:34:11 +00:00
|
|
|
|
2016-12-10 23:22:27 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.commons"
|
2016-12-18 09:55:18 +00:00
|
|
|
minSdkVersion propMinSdkVersion
|
|
|
|
targetSdkVersion propTargetSdkVersion
|
|
|
|
versionCode propVersionCode
|
|
|
|
versionName propVersionName
|
2019-08-08 12:14:59 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-12-10 23:22:27 +00:00
|
|
|
}
|
2016-12-11 10:12:39 +00:00
|
|
|
|
2016-12-10 23:22:27 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2016-12-11 10:12:39 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-12-10 23:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-11-18 20:25:03 +00:00
|
|
|
implementation project(':commons')
|
2018-11-04 11:06:41 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2021-10-04 17:26:27 +00:00
|
|
|
implementation 'com.google.android.material:material:1.4.0'
|
2021-05-13 09:16:45 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2016-12-10 23:22:27 +00:00
|
|
|
}
|