2016-02-14 21:04:02 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2017-04-07 22:21:37 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-02-14 21:04:02 +00:00
|
|
|
|
2018-11-06 22:24:59 +00:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-18 21:28:28 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2018-11-06 22:24:59 +00:00
|
|
|
|
2016-02-14 21:04:02 +00:00
|
|
|
android {
|
2021-04-15 12:30:01 +00:00
|
|
|
compileSdkVersion 30
|
2016-02-14 21:04:02 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-04 19:19:58 +00:00
|
|
|
applicationId "com.simplemobiletools.draw.pro"
|
2018-10-11 18:52:52 +00:00
|
|
|
minSdkVersion 21
|
2021-04-15 12:30:01 +00:00
|
|
|
targetSdkVersion 30
|
2021-11-14 13:58:55 +00:00
|
|
|
versionCode 63
|
|
|
|
versionName "6.4.1"
|
2017-11-20 15:49:32 +00:00
|
|
|
setProperty("archivesBaseName", "draw")
|
2019-09-02 13:46:26 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-02-14 21:04:02 +00:00
|
|
|
}
|
2016-04-25 21:38:50 +00:00
|
|
|
|
2019-12-19 20:53:06 +00:00
|
|
|
signingConfigs {
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
2019-12-18 21:28:28 +00:00
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2018-11-06 22:24:59 +00:00
|
|
|
}
|
2016-04-25 21:38:50 +00:00
|
|
|
}
|
|
|
|
|
2016-02-14 21:04:02 +00:00
|
|
|
buildTypes {
|
2018-01-30 21:04:18 +00:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2016-02-14 21:04:02 +00:00
|
|
|
release {
|
2016-04-25 21:38:50 +00:00
|
|
|
minifyEnabled true
|
2016-02-14 21:04:02 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 21:57:12 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2016-02-14 21:04:02 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-07 22:21:37 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-08-29 20:19:30 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-02-14 21:04:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-11-14 09:42:00 +00:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:a82ec0a6f3'
|
2020-09-19 15:38:36 +00:00
|
|
|
implementation "androidx.print:print:1.0.0"
|
2017-04-07 22:21:37 +00:00
|
|
|
}
|