2016-02-16 22:23:25 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-10-05 18:31:46 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-02-16 22:23:25 +01:00
|
|
|
|
|
|
|
android {
|
2017-11-07 17:11:20 +01:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion "27.0.1"
|
2016-02-16 22:23:25 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-02-24 00:08:09 +01:00
|
|
|
applicationId "com.simplemobiletools.gallery"
|
2016-02-16 22:23:25 +01:00
|
|
|
minSdkVersion 16
|
2017-11-07 17:11:20 +01:00
|
|
|
targetSdkVersion 27
|
2017-12-04 23:33:42 +01:00
|
|
|
versionCode 146
|
|
|
|
versionName "3.0.0"
|
2017-11-12 23:59:22 +01:00
|
|
|
multiDexEnabled true
|
|
|
|
setProperty("archivesBaseName", "gallery")
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
2016-04-25 22:57:10 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-06-25 16:09:54 +02:00
|
|
|
minifyEnabled true
|
2016-02-16 22:23:25 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-04-25 22:57:10 +02:00
|
|
|
signingConfig signingConfigs.release
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-05 18:31:46 +02:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-08-02 23:44:35 +02:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
|
|
|
|
2017-11-07 17:11:20 +01:00
|
|
|
ext {
|
|
|
|
leakCanaryVersion = '1.5.4'
|
|
|
|
}
|
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
dependencies {
|
2017-12-06 18:07:05 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:3.1.13'
|
2017-11-21 16:22:08 +01:00
|
|
|
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.8.0'
|
|
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
|
|
|
|
implementation 'com.android.support:multidex:1.0.2'
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
|
|
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.8'
|
2017-04-17 20:31:50 +02:00
|
|
|
|
2017-11-21 16:22:08 +01:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
2016-04-25 22:57:10 +02:00
|
|
|
|
2017-11-21 16:22:08 +01:00
|
|
|
Properties props = new Properties()
|
2016-04-25 22:57:10 +02:00
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
2017-01-22 20:12:48 +01:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-04-25 22:57:10 +02:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-01-22 20:12:48 +01:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-04-25 22:57:10 +02:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-01-22 20:12:48 +01:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-04-25 22:57:10 +02:00
|
|
|
} else {
|
|
|
|
println 'signing.properties found but some entries are missing'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
println 'signing.properties not found'
|
|
|
|
android.buildTypes.release.signingConfig = null
|
|
|
|
}
|