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()
|
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 {
|
2020-08-20 10:22:23 +02:00
|
|
|
compileSdkVersion 30
|
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"
|
2018-10-12 22:17:58 +02:00
|
|
|
minSdkVersion 21
|
2020-08-20 10:22:23 +02:00
|
|
|
targetSdkVersion 30
|
2021-12-29 20:16:26 +01:00
|
|
|
versionCode 49
|
|
|
|
versionName "5.5.1"
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-01-06 13:43:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-29 17:13:00 +01:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:14033f9b50'
|
2020-05-25 00:10:23 +02:00
|
|
|
implementation 'org.greenrobot:eventbus:3.2.0'
|
2021-12-29 17:13:00 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
|
2016-01-06 13:43:35 +01:00
|
|
|
}
|