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 {
|
2019-08-21 07:37:19 +00:00
|
|
|
implementation 'eu.chainfire:libsuperuser:1.1.0.201907261845'
|
2019-07-16 07:41:30 +00:00
|
|
|
implementation 'com.android.support:design:28.0.0'
|
2017-12-05 11:53:33 +00:00
|
|
|
implementation 'com.google.zxing:android-integration:3.3.0'
|
2019-10-07 06:30:22 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
2017-12-05 11:53:33 +00:00
|
|
|
implementation 'org.mindrot:jbcrypt:0.4'
|
2020-01-08 13:48:51 +00:00
|
|
|
implementation 'com.google.guava:guava:28.2-android'
|
2019-06-05 10:02:47 +00:00
|
|
|
implementation 'com.annimon:stream:1.2.1'
|
2019-06-04 13:25:40 +00:00
|
|
|
implementation 'com.android.volley:volley:1.1.1'
|
2019-06-04 21:04:45 +00:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2020-02-04 07:35:33 +00:00
|
|
|
implementation 'com.google.dagger:dagger:2.26'
|
|
|
|
annotationProcessor "com.google.dagger:dagger-compiler:2.26"
|
2019-06-04 13:25:57 +00:00
|
|
|
androidTestImplementation 'com.android.support.test:rules:1.0.2'
|
2019-06-09 21:54:35 +00:00
|
|
|
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
|
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`
|
2019-07-16 07:41:30 +00:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.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
|
|
|
|
|
2019-06-13 14:51:48 +00:00
|
|
|
playConfigs {
|
2017-10-24 05:55:28 +00:00
|
|
|
defaultAccountConfig {
|
2019-06-13 14:51:48 +00:00
|
|
|
serviceAccountCredentials = 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
|
2019-09-03 07:40:19 +00:00
|
|
|
targetSdkVersion 28
|
2020-02-23 19:24:35 +00:00
|
|
|
versionCode 4214
|
|
|
|
versionName "1.4.0-rc.7"
|
2017-10-24 05:55:28 +00:00
|
|
|
testApplicationId 'com.nutomic.syncthingandroid.test'
|
|
|
|
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2019-06-13 14:51:48 +00:00
|
|
|
serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json')
|
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-06-13 19:26:53 +00:00
|
|
|
delete 'src/main/play/listings/el-EL/'
|
|
|
|
delete 'src/main/play/listings/en/'
|
|
|
|
delete 'src/main/play/listings/eu/'
|
|
|
|
delete 'src/main/play/listings/nb/'
|
|
|
|
delete 'src/main/play/listings/nl_BE/'
|
|
|
|
delete 'src/main/play/listings/nn/'
|
|
|
|
delete 'src/main/play/listings/ta/'
|
2017-10-24 05:55:28 +00:00
|
|
|
}
|