Simple-Gallery/app/build.gradle

95 lines
3.2 KiB
Groovy
Raw Normal View History

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'
2018-04-19 23:35:18 +02:00
apply plugin: 'kotlin-kapt'
2016-02-16 22:23:25 +01:00
android {
2018-09-05 12:36:32 +02:00
compileSdkVersion 28
2018-09-28 18:16:42 +02:00
buildToolsVersion "28.0.3"
2016-02-16 22:23:25 +01:00
defaultConfig {
applicationId "com.simplemobiletools.gallery"
minSdkVersion 21
2018-09-05 12:36:32 +02:00
targetSdkVersion 28
2018-11-04 21:06:37 +01:00
versionCode 207
versionName "5.1.3"
2017-11-12 23:59:22 +01:00
multiDexEnabled true
setProperty("archivesBaseName", "gallery")
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 {
debug {
applicationIdSuffix ".debug"
}
2016-02-16 22:23:25 +01:00
release {
2017-06-25 16:09:54 +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'
}
2017-08-02 23:44:35 +02:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2018-10-17 10:23:03 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2016-02-16 22:23:25 +01:00
}
dependencies {
implementation 'com.simplemobiletools:commons:5.3.9'
2018-04-18 22:15:18 +02:00
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
2018-10-05 22:42:21 +02:00
implementation 'androidx.multidex:multidex:2.0.0'
2017-11-21 16:22:08 +01:00
implementation 'it.sephiroth.android.exif:library:1.0.1'
2018-09-05 12:36:32 +02:00
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.15'
2018-10-05 22:42:21 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
2018-10-17 10:23:03 +02:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.0'
2018-09-21 15:17:31 +02:00
implementation 'com.google.vr:sdk-panowidget:1.170.0'
implementation 'com.google.vr:sdk-videowidget: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 20:58:11 +02: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-10-05 22:42:21 +02:00
kapt "androidx.room:room-compiler:2.0.0"
implementation "androidx.room:room-runtime:2.0.0"
annotationProcessor "androidx.room:room-compiler:2.0.0"
2018-04-19 23:35:18 +02:00
2018-09-20 13:51:09 +02: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.2.1-fork'
2016-02-16 22:23:25 +01:00
}
2016-04-25 22:57:10 +02:00
2017-11-21 16:22:08 +01:00
Properties props = new Properties()
2016-04-25 22:57:10 +02:00
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
}