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 {
|
2018-09-05 12:36:32 +02:00
|
|
|
compileSdkVersion 28
|
2018-09-28 18:16:42 +02:00
|
|
|
buildToolsVersion "28.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
|
2018-09-05 12:36:32 +02:00
|
|
|
targetSdkVersion 28
|
2020-02-28 23:03:06 +01:00
|
|
|
versionCode 296
|
|
|
|
versionName "6.13.1"
|
2017-11-12 23:59:22 +01:00
|
|
|
multiDexEnabled true
|
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
|
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-28 19:58:54 +01:00
|
|
|
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 {
|
|
|
|
proprietary { }
|
|
|
|
foss {
|
|
|
|
// We're not using PhotoEditor here, so changing the name is fine.
|
|
|
|
applicationIdSuffix ".foss"
|
|
|
|
versionNameSuffix "-foss"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2020-02-28 19:44:34 +01:00
|
|
|
implementation 'com.simplemobiletools:commons:5.22.15'
|
2018-11-19 12:39:22 +01:00
|
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
2018-12-24 12:18:49 +01:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2017-11-21 16:22:08 +01:00
|
|
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
2020-02-07 17:54:27 +01:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.19'
|
2019-12-12 14:35:39 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
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'
|
2018-08-06 23:59:49 +02:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2018-08-20 20:58:11 +02:00
|
|
|
implementation 'com.caverock:androidsvg-aar:1.3'
|
2020-02-17 22:22:17 +01:00
|
|
|
implementation 'com.github.tibbi:gestureviews:512f929d82'
|
2019-12-17 22:22:36 +01:00
|
|
|
implementation 'com.github.tibbi:subsampling-scale-image-view:d404e74e39'
|
2017-04-17 20:31:50 +02:00
|
|
|
|
2020-01-18 23:27:40 +01:00
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
2019-10-13 09:39:44 +02:00
|
|
|
|
2019-11-28 21:56:26 +01: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 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 {
|
|
|
|
pesdk {
|
|
|
|
enabled true
|
|
|
|
licencePath 'pesdk_license'
|
|
|
|
}
|
2019-12-17 18:16:30 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
supportLibVersion "28.0.0"
|
2019-12-17 18:16:30 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
modules {
|
|
|
|
include 'ui:core'
|
|
|
|
include 'ui:text'
|
|
|
|
include 'ui:focus'
|
|
|
|
include 'ui:brush'
|
|
|
|
include 'ui:filter'
|
|
|
|
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-02-09 22:33:34 +01:00
|
|
|
|
2020-02-28 11:47:57 +01:00
|
|
|
include 'assets:font-basic'
|
|
|
|
include 'assets:filter-basic'
|
|
|
|
}
|
2019-12-17 18:16:30 +01:00
|
|
|
}
|
|
|
|
}
|