2017-10-24 05:55:28 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
apply plugin: 'com.github.triplet.play'
|
|
|
|
|
|
|
|
dependencies {
|
2017-12-05 11:53:33 +00:00
|
|
|
implementation 'eu.chainfire:libsuperuser:1.0.0.201704021214'
|
|
|
|
implementation 'com.android.support:design:27.0.2'
|
|
|
|
implementation 'com.google.zxing:android-integration:3.3.0'
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
|
|
|
implementation 'org.mindrot:jbcrypt:0.4'
|
2017-12-26 17:59:48 +00:00
|
|
|
implementation 'com.google.guava:guava:23.6-android'
|
2017-12-05 11:53:33 +00:00
|
|
|
implementation 'com.annimon:stream:1.1.9'
|
|
|
|
implementation 'com.android.volley:volley:1.1.0'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
2018-04-09 20:13:25 +00:00
|
|
|
implementation 'com.google.dagger:dagger:2.14.1'
|
2017-12-26 17:59:48 +00:00
|
|
|
annotationProcessor "com.google.dagger:dagger-compiler:2.14.1"
|
2017-12-05 11:53:33 +00:00
|
|
|
androidTestImplementation 'com.android.support.test:rules:1.0.1'
|
|
|
|
androidTestImplementation 'com.android.support:support-annotations:27.0.2'
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2017-12-26 18:47:23 +00:00
|
|
|
// Changes to these values need to be reflected in `.travis.yml`
|
|
|
|
compileSdkVersion 27
|
2018-06-12 17:28:03 +00:00
|
|
|
buildToolsVersion '27.0.3'
|
2017-12-26 18:47:23 +00:00
|
|
|
|
2017-10-24 05:55:28 +00:00
|
|
|
buildTypes.debug.applicationIdSuffix ".debug"
|
|
|
|
dataBinding.enabled = true
|
|
|
|
|
|
|
|
playAccountConfigs {
|
|
|
|
defaultAccountConfig {
|
2018-04-09 20:13:25 +00:00
|
|
|
jsonFile = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json')
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.nutomic.syncthingandroid"
|
2018-04-27 22:29:25 +00:00
|
|
|
minSdkVersion 16
|
2017-10-24 05:55:28 +00:00
|
|
|
targetSdkVersion 26
|
2019-04-18 20:53:51 +00:00
|
|
|
versionCode 4165
|
|
|
|
versionName "1.1.2-rc.1"
|
2017-10-24 05:55:28 +00:00
|
|
|
testApplicationId 'com.nutomic.syncthingandroid.test'
|
|
|
|
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
|
|
|
|
playAccountConfig = playAccountConfigs.defaultAccountConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
2017-11-13 02:09:26 +00:00
|
|
|
storeFile = {
|
|
|
|
def path = System.getenv("SYNCTHING_RELEASE_STORE_FILE")
|
|
|
|
return (path) ? file(path) : null
|
|
|
|
}()
|
2017-10-24 05:55:28 +00:00
|
|
|
storePassword System.getenv("SIGNING_PASSWORD") ?: ""
|
2017-11-13 02:09:26 +00:00
|
|
|
keyAlias System.getenv("SYNCTHING_RELEASE_KEY_ALIAS") ?: ""
|
2017-10-24 05:55:28 +00:00
|
|
|
keyPassword System.getenv("SIGNING_PASSWORD") ?: ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2018-04-09 20:13:25 +00:00
|
|
|
signingConfig = signingConfigs.release.storeFile ? signingConfigs.release : null
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
debuggable true
|
|
|
|
jniDebuggable true
|
|
|
|
renderscriptDebuggable true
|
|
|
|
minifyEnabled false
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
play {
|
2018-04-09 20:13:25 +00:00
|
|
|
jsonFile = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json')
|
2017-10-24 05:55:28 +00:00
|
|
|
uploadImages = false
|
2018-04-18 22:46:20 +00:00
|
|
|
track = 'beta'
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Some languages are not supported by Google Play, so we ignore them.
|
|
|
|
*/
|
|
|
|
task deleteUnsupportedPlayTranslations(type: Delete) {
|
2019-02-11 20:57:24 +00:00
|
|
|
delete 'src/main/play/nn/'
|
|
|
|
delete 'src/main/play/el-EL/'
|
|
|
|
delete 'src/main/play/nb/'
|
2017-10-24 05:55:28 +00:00
|
|
|
delete 'src/main/play/en/'
|
2019-02-11 20:57:24 +00:00
|
|
|
delete 'src/main/play/ta/'
|
|
|
|
delete 'src/main/play/eu/'
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|