2016-04-12 22:35:40 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2016-10-30 22:59:00 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-04-12 22:35:40 +02:00
|
|
|
|
2019-04-07 23:13:24 +02:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
|
2016-04-12 22:35:40 +02:00
|
|
|
android {
|
2018-10-17 23:32:12 +02:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion "28.0.3"
|
2016-04-12 22:35:40 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.camera"
|
2018-10-17 23:32:12 +02:00
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 28
|
2019-09-03 11:40:39 +02:00
|
|
|
versionCode 67
|
|
|
|
versionName "5.1.0"
|
2017-11-21 15:54:30 +01:00
|
|
|
setProperty("archivesBaseName", "camera")
|
2019-09-02 22:27:57 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|
2016-04-25 23:17:45 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-04-07 23:13:24 +02:00
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2016-04-25 23:17:45 +02:00
|
|
|
}
|
|
|
|
|
2016-04-12 22:35:40 +02:00
|
|
|
buildTypes {
|
2018-01-30 22:04:59 +01:00
|
|
|
debug {
|
2018-10-17 22:59:20 +02:00
|
|
|
applicationIdSuffix ".debug"
|
2018-01-30 22:04:59 +01:00
|
|
|
}
|
2016-04-12 22:35:40 +02:00
|
|
|
release {
|
2016-04-25 23:17:45 +02:00
|
|
|
minifyEnabled true
|
2016-04-12 22:35:40 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 23:17:45 +02:00
|
|
|
signingConfig signingConfigs.release
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-30 22:25:13 +01:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-09-20 23:18:20 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-09-02 22:27:57 +02:00
|
|
|
implementation 'com.simplemobiletools:commons:5.17.0'
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|