Simple-Flashlight/app/build.gradle

62 lines
1.7 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 {
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
2020-05-25 11:47:07 +02:00
versionCode 41
versionName "5.1.1"
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
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-01-06 13:43:35 +01:00
}
dependencies {
2020-08-20 10:22:23 +02:00
implementation 'com.simplemobiletools:commons:5.30.1'
2020-05-25 00:10:23 +02:00
implementation 'org.greenrobot:eventbus:3.2.0'
2020-08-20 10:22:23 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
2016-01-06 13:43:35 +01:00
}