Simple-Gallery/app/build.gradle

85 lines
2.8 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()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
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
2019-06-27 12:06:53 +02:00
versionCode 255
versionName "6.8.1"
2017-11-12 23:59:22 +01:00
multiDexEnabled true
setProperty("archivesBaseName", "gallery")
2016-02-16 22:23:25 +01:00
}
2016-04-25 22:57:10 +02:00
signingConfigs {
2018-11-06 23:18:28 +01:00
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2016-04-25 22:57:10 +02:00
}
2016-02-16 22:23:25 +01:00
buildTypes {
debug {
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'
2016-04-25 22:57:10 +02:00
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'
}
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 {
2019-07-01 23:06:01 +02:00
implementation 'com.simplemobiletools:commons:5.14.3'
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'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17'
2019-06-19 20:59:32 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
2019-06-23 22:48:34 +02:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.10.2'
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.picasso:picasso:2.71828'
2018-08-20 20:58:11 +02:00
implementation 'com.caverock:androidsvg-aar:1.3'
2019-06-11 22:51:53 +02:00
implementation 'com.github.tibbi:gestureviews:4444214285'
2019-06-12 10:16:53 +02:00
implementation 'com.github.tibbi:subsampling-scale-image-view:55eb1ddd5b'
2019-02-16 16:43:22 +01:00
kapt 'com.github.bumptech.glide:compiler:4.9.0' // keep it here too, not just in Commons, else loading SVGs wont work
2019-06-19 20:59:32 +02:00
kapt 'androidx.room:room-compiler:2.1.0'
implementation 'androidx.room:room-runtime:2.1.0'
annotationProcessor 'androidx.room:room-compiler:2.1.0'
2016-02-16 22:23:25 +01:00
}