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"
|
2018-10-16 21:56:05 +00:00
|
|
|
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 {
|
2018-01-30 20:59:38 +00:00
|
|
|
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'
|
2018-12-17 20:29:50 +00:00
|
|
|
implementation 'com.google.vr:sdk-panowidget:1.180.0'
|
|
|
|
implementation 'com.google.vr:sdk-videowidget:1.180.0'
|
2018-07-03 13:39:31 +00:00
|
|
|
implementation 'org.apache.sanselan:sanselan:0.97-incubator'
|
2018-07-19 21:36:46 +00:00
|
|
|
implementation 'info.androidhive:imagefilters:1.0.7'
|
2018-08-06 21:59:49 +00:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2018-08-20 18:58:11 +00:00
|
|
|
implementation 'com.caverock:androidsvg-aar:1.3'
|
2018-08-20 21:03:32 +00:00
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.8.0' // keep it here too, not just in Commons, else loading SVGs wont work
|
2017-04-17 18:31:50 +00:00
|
|
|
|
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'
|
2018-12-11 20:51:27 +00:00
|
|
|
//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-01-07 17:39:40 +00:00
|
|
|
|
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
|
|
|
}
|