84 lines
2.6 KiB
Groovy
84 lines
2.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "26.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.simplemobiletools.gallery"
|
|
minSdkVersion 16
|
|
targetSdkVersion 26
|
|
versionCode 140
|
|
versionName "2.17.2"
|
|
}
|
|
|
|
signingConfigs {
|
|
release
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.simplemobiletools:commons:2.34.2'
|
|
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
|
|
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
compile 'it.sephiroth.android.exif:library:1.0.1'
|
|
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.8'
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.1'
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
|
|
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
|
|
}
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.1.51'
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
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('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
|
android.signingConfigs.release.keyPassword = props['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
|
|
}
|