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'
|
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()
|
2019-12-19 21:59:10 +01:00
|
|
|
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 {
|
2023-08-25 21:48:48 +02:00
|
|
|
namespace "com.simplemobiletools.flashlight"
|
|
|
|
compileSdk 34
|
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"
|
2023-08-25 21:48:48 +02:00
|
|
|
minSdk 23
|
|
|
|
targetSdk 34
|
2023-05-15 20:55:40 +02:00
|
|
|
versionCode 64
|
|
|
|
versionName "5.9.2"
|
2017-12-04 20:43:35 +01:00
|
|
|
setProperty("archivesBaseName", "flashlight")
|
2016-01-06 13:43:35 +01:00
|
|
|
}
|
2016-04-25 23:30:32 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 21:59:10 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-08-01 21:53:13 +02:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
viewBinding true
|
|
|
|
}
|
|
|
|
|
2016-01-06 13:43:35 +01:00
|
|
|
buildTypes {
|
2018-01-30 22:03:00 +01:00
|
|
|
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'
|
2019-12-22 22:57:59 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2016-01-06 13:43:35 +01:00
|
|
|
}
|
|
|
|
}
|
2017-11-05 21:55:08 +01:00
|
|
|
|
2023-08-25 21:48:48 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '17'
|
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions = ["variants"]
|
2022-01-31 22:27:11 +01:00
|
|
|
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 {
|
2023-08-25 21:48:48 +02:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:565200547d'
|
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
|
|
|
}
|