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
|
|
|
|
buildToolsVersion "25.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
|
2016-12-15 22:32:28 +01:00
|
|
|
targetSdkVersion 25
|
2016-12-11 22:54:22 +01:00
|
|
|
versionCode 51
|
|
|
|
versionName "1.51"
|
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
|
|
|
|
2016-11-06 16:56:17 +01:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/library-compileDebugKotlin.kotlin_module'
|
|
|
|
}
|
|
|
|
|
2016-10-05 18:31:46 +02:00
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-12-15 22:32:28 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:25.1.0'
|
|
|
|
compile 'com.android.support:design:25.1.0'
|
2016-02-20 18:14:09 +01:00
|
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
2016-11-15 19:00:10 +01: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-10-08 11:56:29 +02:00
|
|
|
compile 'com.booking:rtlviewpager:1.0.1'
|
2016-12-04 15:12:08 +01:00
|
|
|
compile 'com.simplemobiletools:fileproperties:1.0.7@aar'
|
2016-12-08 20:53:51 +01:00
|
|
|
compile 'com.simplemobiletools:filepicker:1.6.1@aar'
|
2016-12-15 22:32:28 +01:00
|
|
|
compile 'com.simplemobiletools:commons:1.0.4@aar'
|
2016-11-16 20:11:18 +01:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
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 {
|
|
|
|
ext.kotlin_version = '1.0.3'
|
|
|
|
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))
|
|
|
|
|
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('STORE_PASSWORD') &&
|
|
|
|
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) {
|
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
|
|
|
android.signingConfigs.release.storePassword = props['STORE_PASSWORD']
|
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
|
|
|
android.signingConfigs.release.keyPassword = props['KEY_PASSWORD']
|
|
|
|
} 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
|
|
|
|
}
|