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()
|
2019-12-19 20:54:43 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2018-11-06 22:18:28 +00:00
|
|
|
|
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
|
2019-12-27 20:59:07 +00:00
|
|
|
versionCode 284
|
|
|
|
versionName "6.11.4"
|
2017-11-12 22:59:22 +00:00
|
|
|
multiDexEnabled true
|
|
|
|
setProperty("archivesBaseName", "gallery")
|
2019-08-08 17:46:40 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-02-16 21:23:25 +00:00
|
|
|
}
|
2016-04-25 20:57:10 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 20:54:43 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2018-11-06 22:18:28 +00:00
|
|
|
}
|
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 {
|
2019-12-17 17:16:30 +00:00
|
|
|
// we cannot change the original package name, else PhotoEditorSDK won't work
|
|
|
|
//applicationIdSuffix ".debug"
|
2018-01-30 20:59:38 +00:00
|
|
|
}
|
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'
|
2019-12-22 21:58:17 +00:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
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
|
|
|
|
}
|
2019-01-22 10:41:53 +00:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/library_release.kotlin_module'
|
|
|
|
}
|
2016-02-16 21:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-01-02 16:11:19 +00:00
|
|
|
implementation 'com.simplemobiletools:commons:5.21.14'
|
2018-11-19 11:39:22 +00:00
|
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
2018-12-24 11:18:49 +00:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2017-11-21 15:22:08 +00:00
|
|
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
2019-10-11 08:54:26 +00:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.18'
|
2019-12-12 13:35:39 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
2019-07-02 09:25:54 +00:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.6'
|
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-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'
|
2019-12-17 21:22:36 +00:00
|
|
|
implementation 'com.github.tibbi:gestureviews:8dccb8450b'
|
|
|
|
implementation 'com.github.tibbi:subsampling-scale-image-view:d404e74e39'
|
2017-04-17 18:31:50 +00:00
|
|
|
|
2019-10-13 07:39:44 +00:00
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
|
2019-11-28 20:56:26 +00:00
|
|
|
kapt 'androidx.room:room-compiler:2.2.2'
|
|
|
|
implementation 'androidx.room:room-runtime:2.2.2'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.2.2'
|
2016-02-16 21:23:25 +00:00
|
|
|
}
|
2019-12-17 17:16:30 +00:00
|
|
|
|
|
|
|
// Apply the PESDKPlugin
|
|
|
|
apply plugin: 'ly.img.android.pesdk'
|
|
|
|
|
|
|
|
pesdkConfig {
|
|
|
|
licencePath 'pesdk_license'
|
|
|
|
|
|
|
|
supportLibVersion "28.0.0"
|
|
|
|
|
|
|
|
modules {
|
2019-12-25 11:09:39 +00:00
|
|
|
include 'ly.img.android.pesdk.operation:text'
|
|
|
|
include 'ly.img.android.pesdk.operation:focus'
|
|
|
|
include 'ly.img.android.pesdk.operation:brush'
|
|
|
|
include 'ly.img.android.pesdk.operation:filter'
|
|
|
|
include 'ly.img.android.pesdk.operation:adjustment'
|
|
|
|
|
2019-12-17 17:16:30 +00:00
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:core'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:text'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:focus'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:brush'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:filter'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:transform'
|
|
|
|
include 'ly.img.android.pesdk.ui.mobile_ui:adjustment'
|
|
|
|
|
2019-12-25 11:09:39 +00:00
|
|
|
include 'ly.img.android.pesdk:serializer'
|
|
|
|
|
2019-12-17 17:16:30 +00:00
|
|
|
include 'ly.img.android.pesdk.assets:font-basic'
|
|
|
|
include 'ly.img.android.pesdk.assets:filter-basic'
|
|
|
|
}
|
|
|
|
}
|