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
|
|
|
|
2018-11-06 23:18:28 +01:00
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
def keystoreProperties = new Properties()
|
2019-12-19 21:54:43 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
}
|
2018-11-06 23:18:28 +01:00
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
android {
|
2020-03-19 12:38:18 +01:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "29.0.3"
|
2016-02-16 22:23:25 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-04 21:25:51 +01:00
|
|
|
applicationId "com.simplemobiletools.gallery.pro"
|
2018-10-16 23:56:05 +02:00
|
|
|
minSdkVersion 21
|
2020-03-19 12:38:18 +01:00
|
|
|
targetSdkVersion 29
|
2021-06-18 14:02:50 +02:00
|
|
|
versionCode 344
|
|
|
|
versionName "6.20.2"
|
2020-02-28 19:57:45 +01:00
|
|
|
setProperty("archivesBaseName", "gallery-$versionCode")
|
2019-08-08 19:46:40 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
2016-04-25 22:57:10 +02:00
|
|
|
|
|
|
|
signingConfigs {
|
2019-12-19 21:54:43 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
2018-11-06 23:18:28 +01:00
|
|
|
}
|
2016-04-25 22:57:10 +02:00
|
|
|
}
|
|
|
|
|
2016-02-16 22:23:25 +01:00
|
|
|
buildTypes {
|
2018-01-30 21:59:38 +01:00
|
|
|
debug {
|
2019-12-17 18:16:30 +01:00
|
|
|
// we cannot change the original package name, else PhotoEditorSDK won't work
|
|
|
|
//applicationIdSuffix ".debug"
|
2018-01-30 21:59:38 +01:00
|
|
|
}
|
2016-02-16 22:23:25 +01:00
|
|
|
release {
|
2017-06-25 16:09:54 +02:00
|
|
|
minifyEnabled true
|
2021-03-17 07:30:09 +01:00
|
|
|
shrinkResources true
|
2016-02-16 22:23:25 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2019-12-22 22:58:17 +01:00
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
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'
|
2020-02-29 21:59:26 +01:00
|
|
|
if (is_proprietary) {
|
|
|
|
main.java.srcDirs += 'src/proprietary/kotlin'
|
|
|
|
}
|
2016-10-05 18:31:46 +02:00
|
|
|
}
|
2017-08-02 23:44:35 +02:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
flavorDimensions "licensing"
|
|
|
|
productFlavors {
|
2020-04-21 17:49:49 +02:00
|
|
|
proprietary {}
|
|
|
|
foss {}
|
2020-02-28 11:47:57 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2019-01-22 11:41:53 +01:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/library_release.kotlin_module'
|
|
|
|
}
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-06-18 13:55:28 +02:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:bd6aeceae9'
|
2018-11-19 12:39:22 +01:00
|
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
2017-11-21 16:22:08 +01:00
|
|
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
2021-02-18 23:26:58 +01:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.22'
|
2020-11-08 11:45:33 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
2019-07-02 11:25:54 +02:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.6'
|
2018-12-17 21:29:50 +01:00
|
|
|
implementation 'com.google.vr:sdk-panowidget:1.180.0'
|
|
|
|
implementation 'com.google.vr:sdk-videowidget:1.180.0'
|
2018-07-03 15:39:31 +02:00
|
|
|
implementation 'org.apache.sanselan:sanselan:0.97-incubator'
|
2020-03-05 23:17:48 +01:00
|
|
|
implementation 'info.androidhive:imagefilters:1.0.7'
|
2021-03-16 21:14:04 +01:00
|
|
|
implementation 'com.squareup.okio:okio:2.10.0'
|
2021-02-18 23:26:58 +01:00
|
|
|
implementation 'com.caverock:androidsvg-aar:1.4'
|
|
|
|
implementation 'com.github.tibbi:gestureviews:a8e8fa8d27'
|
|
|
|
implementation 'com.github.tibbi:subsampling-scale-image-view:961f7b5f2d'
|
2020-09-09 21:32:19 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-03-30 15:22:52 +02:00
|
|
|
implementation 'com.github.penfeizhou.android.animation:awebp:2.9.0'
|
|
|
|
implementation('com.squareup.picasso:picasso:2.71828') {
|
|
|
|
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
|
|
|
|
}
|
|
|
|
compileOnly 'com.squareup.okhttp3:okhttp:4.9.0'
|
2017-04-17 20:31:50 +02:00
|
|
|
|
2020-05-05 16:15:21 +02:00
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
2019-10-13 09:39:44 +02:00
|
|
|
|
2021-05-13 21:22:57 +02:00
|
|
|
kapt 'androidx.room:room-compiler:2.3.0'
|
|
|
|
implementation 'androidx.room:room-runtime:2.3.0'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.3.0'
|
2016-02-16 22:23:25 +01:00
|
|
|
}
|
2019-12-17 18:16:30 +01:00
|
|
|
|
|
|
|
// Apply the PESDKPlugin
|
2020-02-28 11:47:57 +01:00
|
|
|
if (is_proprietary) {
|
|
|
|
apply plugin: 'ly.img.android.sdk'
|
2019-12-17 18:16:30 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
imglyConfig {
|
2020-11-28 20:51:18 +01:00
|
|
|
vesdk {
|
|
|
|
enabled true
|
|
|
|
licencePath 'vesdk_license'
|
|
|
|
}
|
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
pesdk {
|
|
|
|
enabled true
|
|
|
|
licencePath 'pesdk_license'
|
|
|
|
}
|
2019-12-17 18:16:30 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
modules {
|
2020-11-28 20:51:18 +01:00
|
|
|
include 'ui:video-trim'
|
2020-02-28 11:47:57 +01:00
|
|
|
include 'ui:core'
|
|
|
|
include 'ui:text'
|
|
|
|
include 'ui:focus'
|
|
|
|
include 'ui:brush'
|
|
|
|
include 'ui:filter'
|
2020-12-04 11:19:34 +01:00
|
|
|
include 'ui:sticker'
|
|
|
|
include 'ui:overlay'
|
2020-02-28 11:47:57 +01:00
|
|
|
include 'ui:transform'
|
|
|
|
include 'ui:adjustment'
|
2020-02-09 22:33:34 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
include 'backend:serializer'
|
2020-12-04 11:19:34 +01:00
|
|
|
include 'backend:sticker-smart'
|
|
|
|
include 'backend:sticker-animated'
|
2020-02-09 22:33:34 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
include 'assets:font-basic'
|
|
|
|
include 'assets:filter-basic'
|
2020-12-04 11:19:34 +01:00
|
|
|
include 'assets:overlay-basic'
|
|
|
|
include 'assets:sticker-shapes'
|
|
|
|
include 'assets:sticker-emoticons'
|
|
|
|
include 'assets:sticker-animated'
|
2020-02-28 11:47:57 +01:00
|
|
|
}
|
2019-12-17 18:16:30 +01:00
|
|
|
}
|
|
|
|
}
|