mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
84 lines
2.8 KiB
Groovy
84 lines
2.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
def keystoreProperties = new Properties()
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "28.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.simplemobiletools.gallery.pro"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 241
|
|
versionName "6.6.3"
|
|
multiDexEnabled true
|
|
setProperty("archivesBaseName", "gallery")
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/library_release.kotlin_module'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.simplemobiletools:commons:5.11.3'
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
implementation 'it.sephiroth.android.exif:library:1.0.1'
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.16'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
|
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.picasso:picasso:2.71828'
|
|
implementation 'com.caverock:androidsvg-aar:1.3'
|
|
implementation 'com.github.tibbi:gestureviews:cb7c2c191a'
|
|
implementation 'com.github.tibbi:subsampling-scale-image-view:7e4202eaee'
|
|
kapt 'com.github.bumptech.glide:compiler:4.9.0' // keep it here too, not just in Commons, else loading SVGs wont work
|
|
|
|
kapt 'androidx.room:room-compiler:2.0.0'
|
|
implementation 'androidx.room:room-runtime:2.0.0'
|
|
annotationProcessor 'androidx.room:room-compiler:2.0.0'
|
|
}
|