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-03-10 22:46:29 +01:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.2"
|
2016-07-12 22:07:49 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.simplemobiletools.filemanager"
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 23
|
2017-09-04 19:53:20 +02:00
|
|
|
versionCode 35
|
|
|
|
versionName "2.4.0"
|
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 {
|
|
|
|
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
|
2016-07-12 22:07:49 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-10 20:47:00 +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
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-09-27 22:25:18 +02:00
|
|
|
compile 'com.simplemobiletools:commons:2.28.7'
|
2016-11-20 17:27:54 +01:00
|
|
|
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
|
2016-09-07 23:53:43 +02:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2017-09-03 18:18:03 +02:00
|
|
|
|
|
|
|
compile files('../libs/RootTools.jar')
|
2016-07-12 22:07:49 +02:00
|
|
|
}
|
2016-08-02 21:54:25 +02:00
|
|
|
|
2016-09-07 23:53:43 +02:00
|
|
|
buildscript {
|
2017-09-27 22:25:42 +02:00
|
|
|
ext.kotlin_version = '1.1.50'
|
2016-09-07 23:53:43 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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))
|
|
|
|
|
2017-03-10 22:46:29 +01:00
|
|
|
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'])
|
2017-03-10 22:46:29 +01:00
|
|
|
android.signingConfigs.release.storePassword = props['PASSWORD']
|
2016-08-02 21:54:25 +02:00
|
|
|
android.signingConfigs.release.keyAlias = props['KEY_ALIAS']
|
2017-03-10 22:46:29 +01:00
|
|
|
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
|
|
|
|
}
|