Simple-Gallery/app/build.gradle

89 lines
3.1 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'
2018-04-19 21:35:18 +00:00
apply plugin: 'kotlin-kapt'
2016-02-16 21:23:25 +00:00
android {
2018-09-05 10:36:32 +00:00
compileSdkVersion 28
buildToolsVersion "28.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
2018-09-05 10:36:32 +00:00
targetSdkVersion 28
2018-09-22 16:55:56 +00:00
versionCode 200
versionName "4.6.4"
2017-11-12 22:59:22 +00:00
multiDexEnabled true
setProperty("archivesBaseName", "gallery")
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 {
debug {
applicationIdSuffix ".debug"
}
2016-02-16 21:23:25 +00:00
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 {
2018-09-22 16:52:55 +00:00
implementation 'com.simplemobiletools:commons:4.7.17'
2018-04-18 20:15:18 +00:00
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
2018-03-02 16:14:37 +00:00
implementation 'com.android.support:multidex:1.0.3'
2017-11-21 15:22:08 +00:00
implementation 'it.sephiroth.android.exif:library:1.0.1'
2018-09-05 10:36:32 +00:00
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.15'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2018-09-19 11:53:55 +00:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.8.4'
2018-09-21 13:17:31 +00:00
implementation 'com.google.vr:sdk-panowidget:1.170.0'
implementation 'org.apache.sanselan:sanselan:0.97-incubator'
implementation 'info.androidhive:imagefilters:1.0.7'
implementation 'com.squareup.picasso:picasso:2.71828'
2018-08-20 18:58:11 +00:00
implementation 'com.caverock:androidsvg-aar:1.3'
kapt 'com.github.bumptech.glide:compiler:4.8.0' // keep it here too, not just in Commons, else loading SVGs wont work
2018-06-22 19:09:54 +00:00
kapt "android.arch.persistence.room:compiler:1.1.1"
implementation "android.arch.persistence.room:runtime:1.1.1"
annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
2018-04-19 21:35:18 +00:00
2018-09-20 11:51:09 +00:00
//implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'com.github.tibbi:subsampling-scale-image-view:v3.10.1-fork'
// implementation 'com.github.chrisbanes:PhotoView:2.1.4'
implementation 'com.github.tibbi:PhotoView:2.1.4-fork'
2016-02-16 21:23:25 +00:00
}
2016-04-25 20:57:10 +00:00
2017-11-21 15:22:08 +00:00
Properties props = new Properties()
2016-04-25 20:57:10 +00:00
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
}