Simple-Gallery/app/build.gradle

84 lines
2.6 KiB
Groovy
Raw Normal View History

2016-02-16 21:23:25 +00:00
apply plugin: 'com.android.application'
2016-10-05 16:31:46 +00:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-02-16 21:23:25 +00:00
android {
2016-12-15 21:32:28 +00:00
compileSdkVersion 25
2017-03-04 22:15:34 +00:00
buildToolsVersion "25.0.2"
2016-02-16 21:23:25 +00:00
defaultConfig {
applicationId "com.simplemobiletools.gallery"
2016-02-16 21:23:25 +00:00
minSdkVersion 16
2017-03-09 08:27:40 +00:00
targetSdkVersion 23
2017-09-01 13:26:32 +00:00
versionCode 127
versionName "2.13.4"
2016-02-16 21:23:25 +00:00
}
2016-04-25 20:57:10 +00:00
signingConfigs {
release
}
2016-02-16 21:23:25 +00:00
buildTypes {
release {
2017-06-25 14:09:54 +00:00
minifyEnabled true
2016-02-16 21:23:25 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-04-25 20:57:10 +00:00
signingConfig signingConfigs.release
2016-02-16 21:23:25 +00:00
}
}
2016-10-05 16:31:46 +00:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
2017-08-02 21:44:35 +00:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-02-16 21:23:25 +00:00
}
dependencies {
2017-08-29 20:47:50 +00:00
compile 'com.simplemobiletools:commons:2.26.9'
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
2017-04-17 16:24:14 +00:00
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
2017-01-04 21:00:03 +00:00
compile 'com.google.code.gson:gson:2.8.0'
2017-07-09 17:47:54 +00:00
compile 'com.github.chrisbanes:PhotoView:2.1.2'
compile 'it.sephiroth.android.exif:library:1.0.1'
2016-10-05 16:37:28 +00:00
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2017-07-01 07:05:37 +00:00
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'
2016-02-16 21:23:25 +00:00
}
2016-04-25 20:57:10 +00:00
2016-10-05 16:31:46 +00:00
buildscript {
2017-08-19 07:42:04 +00:00
ext.kotlin_version = '1.1.4-2'
2016-10-05 16:31:46 +00: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 20:57:10 +00:00
def Properties props = new Properties()
def propFile = new File('signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
2017-01-22 19:12:48 +00:00
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
2016-04-25 20:57:10 +00:00
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
2017-01-22 19:12:48 +00:00
android.signingConfigs.release.storePassword = props['PASSWORD']
2016-04-25 20:57:10 +00:00
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
2017-01-22 19:12:48 +00:00
android.signingConfigs.release.keyPassword = props['PASSWORD']
2016-04-25 20:57:10 +00: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
}