Simple-Gallery/app/build.gradle

150 lines
4.6 KiB
Groovy
Raw Normal View History

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()
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 {
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"
minSdkVersion 21
targetSdkVersion 29
2021-10-03 19:46:55 +02:00
versionCode 349
versionName "6.21.3"
setProperty("archivesBaseName", "gallery-$versionCode")
vectorDrawables.useSupportLibrary = true
2016-02-16 22:23:25 +01:00
}
2016-04-25 22:57:10 +02:00
signingConfigs {
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 {
debug {
// we cannot change the original package name, else PhotoEditorSDK won't work
//applicationIdSuffix ".debug"
}
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'
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'
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
flavorDimensions "licensing"
productFlavors {
proprietary {}
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
}
packagingOptions {
exclude 'META-INF/library_release.kotlin_module'
}
2016-02-16 22:23:25 +01:00
}
dependencies {
2021-10-09 15:41:31 +02:00
implementation 'com.github.SimpleMobileTools:Simple-Commons:fc483df24d'
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'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
2019-07-02 11:25:54 +02:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.9.6'
implementation 'com.google.vr:sdk-panowidget:1.180.0'
implementation 'com.google.vr:sdk-videowidget:1.180.0'
implementation 'org.apache.sanselan:sanselan:0.97-incubator'
implementation 'info.androidhive:imagefilters:1.0.7'
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:60fb7362d5'
2020-09-09 21:32:19 +02:00
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2021-08-17 16:43:20 +02:00
implementation 'com.github.penfeizhou.android.animation:awebp:2.11.0'
implementation 'com.github.penfeizhou.android.animation:apng:2.11.0'
implementation('com.squareup.picasso:picasso:2.71828') {
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}
compileOnly 'com.squareup.okhttp3:okhttp:4.9.0'
kapt 'com.github.bumptech.glide:compiler:4.10.0'
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
}
// Apply the PESDKPlugin
if (is_proprietary) {
apply plugin: 'ly.img.android.sdk'
imglyConfig {
vesdk {
enabled true
licensePath 'vesdk_license'
}
pesdk {
enabled true
licensePath 'pesdk_license'
}
modules {
include 'ui:video-trim'
include 'ui:core'
include 'ui:text'
include 'ui:focus'
include 'ui:brush'
include 'ui:filter'
include 'ui:sticker'
include 'ui:overlay'
include 'ui:transform'
include 'ui:adjustment'
2020-02-09 22:33:34 +01:00
include 'backend:serializer'
include 'backend:sticker-smart'
include 'backend:sticker-animated'
2020-02-09 22:33:34 +01:00
include 'assets:font-basic'
include 'assets:filter-basic'
include 'assets:overlay-basic'
include 'assets:sticker-shapes'
include 'assets:sticker-emoticons'
include 'assets:sticker-animated'
}
}
}