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
android {
2017-11-09 20:42:30 +01:00
compileSdkVersion 27
buildToolsVersion "27.0.1"
2016-07-12 22:07:49 +02:00
defaultConfig {
applicationId "com.simplemobiletools.filemanager"
minSdkVersion 16
2017-11-09 20:42:30 +01:00
targetSdkVersion 27
2017-11-10 13:42:05 +01:00
versionCode 38
versionName "2.7.0"
setProperty("archivesBaseName", "file-manager")
2016-07-12 22:07:49 +02:00
}
2016-08-02 21:54:25 +02:00
signingConfigs {
release
}
2016-07-12 22:07:49 +02:00
buildTypes {
2017-11-09 20:56:53 +01:00
debug {
buildConfigField "boolean", "USE_LEAK_CANARY", "true"
}
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'
2016-08-02 21:54:25 +02:00
signingConfig signingConfigs.release
2017-11-09 20:56:53 +01:00
buildConfigField "boolean", "USE_LEAK_CANARY", "false"
2016-07-12 22:07:49 +02: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
}
2017-11-09 20:56:53 +01:00
ext {
leakCanaryVersion = '1.5.4'
}
2016-07-12 22:07:49 +02:00
dependencies {
implementation 'com.simplemobiletools:commons:2.39.10'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation files('../libs/RootTools.jar')
2017-11-09 20:56:53 +01:00
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
2016-09-07 23:53:43 +02:00
}
2016-08-02 21:54:25 +02:00
def Properties props = new Properties()
def propFile = new File('signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
2016-08-02 21:54:25 +02:00
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
android.signingConfigs.release.storePassword = props['PASSWORD']
2016-08-02 21:54:25 +02:00
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
android.signingConfigs.release.keyPassword = props['PASSWORD']
2016-08-02 21:54:25 +02:00
} else {
println 'signing.properties found but some entries are missing'
android.buildTypes.release.signingConfig = null
}
} else {
println 'signing.properties not found'
android.buildTypes.release.signingConfig = null
}