Simple-Flashlight/app/build.gradle

61 lines
1.6 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 {
2018-10-05 20:23:37 +02:00
compileSdkVersion 28
buildToolsVersion "28.0.3"
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
2018-10-05 20:41:23 +02:00
targetSdkVersion 28
2019-08-24 19:58:37 +02:00
versionCode 35
versionName "5.0.3"
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'
2016-04-25 23:30:32 +02:00
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 {
2019-09-18 11:25:22 +02:00
implementation 'com.simplemobiletools:commons:5.17.17'
2017-11-29 23:24:00 +01:00
implementation 'com.squareup:otto:1.3.8'
2019-07-03 09:39:04 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
2016-01-06 13:43:35 +01:00
}