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