2016-07-12 20:07:49 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2016-09-07 21:53:43 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2016-07-12 20:07:49 +00:00
|
|
|
|
|
|
|
android {
|
2018-09-10 15:51:26 +00:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion "28.0.2"
|
2016-07-12 20:07:49 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.filemanager"
|
|
|
|
minSdkVersion 16
|
2018-09-10 15:51:26 +00:00
|
|
|
targetSdkVersion 28
|
2018-08-07 14:18:26 +00:00
|
|
|
versionCode 55
|
|
|
|
versionName "4.2.0"
|
2017-11-10 15:14:11 +00:00
|
|
|
setProperty("archivesBaseName", "file-manager")
|
2016-07-12 20:07:49 +00:00
|
|
|
}
|
2016-08-02 19:54:25 +00:00
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release
|
|
|
|
}
|
|
|
|
|
2016-07-12 20:07:49 +00:00
|
|
|
buildTypes {
|
2018-01-30 21:01:35 +00:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2016-07-12 20:07:49 +00:00
|
|
|
release {
|
2016-08-02 20:38:56 +00:00
|
|
|
minifyEnabled true
|
2016-07-12 20:07:49 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2016-08-02 19:54:25 +00:00
|
|
|
signingConfig signingConfigs.release
|
2016-07-12 20:07:49 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-10 18:47:00 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2017-08-07 20:30:47 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-07-12 20:07:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-09-10 15:51:26 +00:00
|
|
|
implementation 'com.simplemobiletools:commons:4.7.5'
|
2017-09-03 16:18:03 +00:00
|
|
|
|
2017-11-18 22:50:53 +00:00
|
|
|
implementation files('../libs/RootTools.jar')
|
2016-09-07 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-19 16:54:21 +00:00
|
|
|
Properties props = new Properties()
|
2016-08-02 19:54:25 +00:00
|
|
|
def propFile = new File('signing.properties')
|
|
|
|
if (propFile.canRead()) {
|
|
|
|
props.load(new FileInputStream(propFile))
|
|
|
|
|
2017-03-10 21:46:29 +00:00
|
|
|
if (props != null && props.containsKey('STORE_FILE') && props.containsKey('KEY_ALIAS') && props.containsKey('PASSWORD')) {
|
2016-08-02 19:54:25 +00:00
|
|
|
android.signingConfigs.release.storeFile = file(props['STORE_FILE'])
|
2017-03-10 21:46:29 +00:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-08-02 19:54:25 +00:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-03-10 21:46:29 +00:00
|
|
|
android.signingConfigs.release.keyPassword = props['PASSWORD']
|
2016-08-02 19:54:25 +00: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
|
|
|
|
}
|