Simple-Flashlight/app/build.gradle

69 lines
1.8 KiB
Groovy
Raw Normal View History

2016-01-06 13:43:35 +01:00
apply plugin: 'com.android.application'
2017-11-05 21:55:08 +01:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-01-06 13:43:35 +01:00
2019-04-08 10:25:01 +02:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2019-04-08 10:25:01 +02:00
2016-01-06 13:43:35 +01:00
android {
compileSdkVersion 33
2016-04-25 23:30:32 +02:00
2016-01-06 13:43:35 +01:00
defaultConfig {
2016-02-25 22:05:29 +01:00
applicationId "com.simplemobiletools.flashlight"
minSdkVersion 23
targetSdkVersion 33
2022-11-17 23:37:15 +01:00
versionCode 61
versionName "5.8.4"
setProperty("archivesBaseName", "flashlight")
2016-01-06 13:43:35 +01:00
}
2016-04-25 23:30:32 +02:00
signingConfigs {
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2019-04-08 10:25:01 +02:00
}
2016-04-25 23:30:32 +02:00
}
2016-01-06 13:43:35 +01:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2016-01-06 13:43:35 +01:00
release {
2016-01-06 22:52:16 +01:00
minifyEnabled true
2016-01-06 13:43:35 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
2016-01-06 13:43:35 +01:00
}
}
2017-11-05 21:55:08 +01:00
2022-01-31 22:27:11 +01:00
flavorDimensions "variants"
productFlavors {
core {}
fdroid {}
2022-07-01 17:12:47 +02:00
prepaid {}
2022-01-31 22:27:11 +01:00
}
2017-11-05 21:55:08 +01:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-01-06 13:43:35 +01:00
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:31cb0b37cf'
2022-05-20 14:23:26 +02:00
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2016-01-06 13:43:35 +01:00
}