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 {
|
2022-03-31 05:46:09 +02:00
|
|
|
compileSdk 31
|
2016-02-16 22:23:25 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-11-04 21:25:51 +01:00
|
|
|
applicationId "com.simplemobiletools.gallery.pro"
|
2022-02-12 12:26:21 +01:00
|
|
|
minSdk 21
|
2022-04-10 12:15:35 +02:00
|
|
|
targetSdk 31
|
2022-07-06 23:44:52 +02:00
|
|
|
versionCode 372
|
|
|
|
versionName "6.23.13"
|
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 {}
|
2022-05-03 10:56:16 +02:00
|
|
|
prepaid {}
|
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 {
|
2022-07-06 23:36:05 +02:00
|
|
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:ab6a89e3b9'
|
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'
|
2022-02-13 10:48:05 +01:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.24'
|
2022-05-21 16:59:16 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.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-02-18 23:26:58 +01:00
|
|
|
implementation 'com.caverock:androidsvg-aar:1.4'
|
|
|
|
implementation 'com.github.tibbi:gestureviews:a8e8fa8d27'
|
2022-06-26 20:15:48 +02:00
|
|
|
implementation 'com.github.tibbi:subsampling-scale-image-view:b51482b3fa'
|
2020-09-09 21:32:19 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-11-30 23:23:20 +01:00
|
|
|
implementation 'com.github.penfeizhou.android.animation:awebp:2.17.0'
|
|
|
|
implementation 'com.github.penfeizhou.android.animation:apng:2.17.0'
|
2021-12-05 20:39:27 +01:00
|
|
|
implementation 'com.squareup.okio:okio:3.0.0'
|
2021-03-30 15:22:52 +02:00
|
|
|
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
|
|
|
|
2022-05-16 21:43:43 +02:00
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.13.2'
|
2019-10-13 09:39:44 +02:00
|
|
|
|
2022-06-06 16:41:22 +02:00
|
|
|
kapt 'androidx.room:room-compiler:2.4.2'
|
|
|
|
implementation 'androidx.room:room-runtime:2.4.2'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.4.2'
|
2022-05-24 14:46:34 +02:00
|
|
|
|
|
|
|
//implementation project(':commons')
|
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
|
2021-08-17 12:20:38 +02:00
|
|
|
licensePath 'vesdk_license'
|
2020-11-28 20:51:18 +01:00
|
|
|
}
|
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
pesdk {
|
|
|
|
enabled true
|
2021-08-17 12:20:38 +02:00
|
|
|
licensePath 'pesdk_license'
|
2020-02-28 11:47:57 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|