Simple-File-Manager/app/build.gradle

76 lines
2.2 KiB
Groovy
Raw Normal View History

2016-07-12 22:07:49 +02:00
apply plugin: 'com.android.application'
2016-09-07 23:53:43 +02:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2016-07-12 22:07:49 +02:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
2019-12-19 21:56:17 +01:00
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2016-07-12 22:07:49 +02:00
android {
compileSdkVersion 33
2016-07-12 22:07:49 +02:00
defaultConfig {
2018-11-04 23:51:42 +01:00
applicationId "com.simplemobiletools.filemanager.pro"
2022-12-31 10:20:20 +01:00
minSdkVersion 23
targetSdkVersion 33
2023-01-11 15:25:53 +01:00
versionCode 131
versionName "6.15.1"
2018-10-04 14:06:20 +02:00
multiDexEnabled true
setProperty("archivesBaseName", "file-manager")
vectorDrawables.useSupportLibrary = true
2016-07-12 22:07:49 +02:00
}
2016-08-02 21:54:25 +02:00
signingConfigs {
2019-12-19 21:56:17 +01:00
if (keystorePropertiesFile.exists()) {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2016-08-02 21:54:25 +02:00
}
2016-07-12 22:07:49 +02:00
buildTypes {
debug {
applicationIdSuffix ".debug"
}
2016-07-12 22:07:49 +02:00
release {
2016-08-02 22:38:56 +02:00
minifyEnabled true
2016-07-12 22:07:49 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
if (keystorePropertiesFile.exists()) {
signingConfig signingConfigs.release
}
2016-07-12 22:07:49 +02:00
}
}
2022-02-05 12:17:21 +01:00
flavorDimensions "variants"
productFlavors {
core {}
fdroid {}
2022-04-19 11:56:06 +02:00
prepaid {}
2022-02-05 12:17:21 +01:00
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
2017-08-07 22:30:47 +02:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2016-07-12 22:07:49 +02:00
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:449b24c6a4'
implementation 'com.github.tibbi:PdfViewPager:d2af24208d'
implementation 'com.github.Stericson:RootTools:df729dcb13'
2019-05-03 10:05:36 +02:00
implementation 'com.github.Stericson:RootShell:1.6'
implementation 'com.alexvasilkov:gesture-views:2.5.2'
2020-09-16 19:31:18 +02:00
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2022-06-27 10:03:18 +02:00
implementation 'me.grantland:autofittextview:0.2.1'
2016-09-07 23:53:43 +02:00
}