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 {
|
2016-12-15 22:32:28 +01:00
|
|
|
compileSdkVersion 25
|
2017-03-04 23:15:34 +01:00
|
|
|
buildToolsVersion "25.0.2"
|
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-03-09 09:27:40 +01:00
|
|
|
targetSdkVersion 23
|
2017-03-22 21:36:54 +01:00
|
|
|
versionCode 88
|
2017-03-25 14:30:27 +01:00
|
|
|
versionName "2.7.4"
|
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 {
|
2016-04-25 22:57:10 +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'
|
|
|
|
}
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-04-01 18:29:39 +02:00
|
|
|
compile 'com.simplemobiletools:commons:2.15.0'
|
2017-04-01 12:00:32 +02:00
|
|
|
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
|
2016-10-05 20:47:58 +02:00
|
|
|
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.1'
|
2016-11-16 20:11:18 +01:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
2017-01-04 22:00:03 +01:00
|
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
2017-01-07 11:41:31 +01:00
|
|
|
compile 'com.github.chrisbanes:PhotoView:1.3.1'
|
2017-01-14 19:14:44 +01:00
|
|
|
compile 'it.sephiroth.android.exif:library:1.0.1'
|
2016-10-05 18:37:28 +02:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
2016-04-25 22:57:10 +02:00
|
|
|
|
2016-10-05 18:31:46 +02:00
|
|
|
buildscript {
|
2017-03-16 20:12:28 +01:00
|
|
|
ext.kotlin_version = '1.1.1'
|
2016-10-05 18:31:46 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-25 22:57:10 +02:00
|
|
|
def Properties props = new Properties()
|
|
|
|
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
|
|
|
|
}
|