Simple-Gallery/app/build.gradle

86 lines
2.9 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
2018-11-06 22:18:28 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2016-02-16 21:23:25 +00:00
android {
2018-09-05 10:36:32 +00:00
compileSdkVersion 28
2018-09-28 16:16:42 +00:00
buildToolsVersion "28.0.3"
2016-02-16 21:23:25 +00:00
defaultConfig {
2018-11-04 20:25:51 +00:00
applicationId "com.simplemobiletools.gallery.pro"
minSdkVersion 21
2018-09-05 10:36:32 +00:00
targetSdkVersion 28
2018-12-18 10:22:17 +00:00
versionCode 214
versionName "6.1.1"
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 {
2018-11-06 22:18:28 +00:00
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2016-04-25 20:57:10 +00:00
}
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
}
2018-10-17 08:23:03 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2016-02-16 21:23:25 +00:00
}
dependencies {
2018-12-24 11:16:16 +00:00
implementation 'com.simplemobiletools:commons:5.5.19'
2018-11-19 11:39:22 +00:00
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
2018-10-05 20:42:21 +00:00
implementation 'androidx.multidex:multidex:2.0.0'
2017-11-21 15:22:08 +00:00
implementation 'it.sephiroth.android.exif:library:1.0.1'
2018-12-17 20:26:58 +00:00
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.16'
2018-10-05 20:42:21 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
2018-12-01 11:43:14 +00:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.2'
implementation 'com.google.vr:sdk-panowidget:1.180.0'
implementation 'com.google.vr:sdk-videowidget:1.180.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-11-06 22:18:28 +00: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 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'
2018-12-18 08:55:28 +00:00
implementation 'com.github.tibbi:subsampling-scale-image-view:fcb724fb0a'
2018-12-17 20:42:44 +00:00
// implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'com.github.tibbi:PhotoView:2.3.0-fork'
2016-02-16 21:23:25 +00:00
}