Simple-Gallery/app/build.gradle

133 lines
3.9 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 {
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"
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
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
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'
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 {
// 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
}
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'
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'
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'
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 'com.squareup.picasso:picasso:2.71828'
2018-08-20 20:58:11 +02:00
implementation 'com.caverock:androidsvg-aar:1.3'
implementation 'com.github.tibbi:gestureviews:512f929d82'
implementation 'com.github.tibbi:subsampling-scale-image-view:d404e74e39'
2020-01-18 23:27:40 +01:00
kapt 'com.github.bumptech.glide:compiler:4.10.0'
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
}
// Apply the PESDKPlugin
if (is_proprietary) {
apply plugin: 'ly.img.android.sdk'
imglyConfig {
pesdk {
enabled true
licencePath 'pesdk_license'
}
supportLibVersion "28.0.0"
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
include 'backend:serializer'
2020-02-09 22:33:34 +01:00
include 'assets:font-basic'
include 'assets:filter-basic'
}
}
}