apply plugin: 'com.android.application' apply plugin: 'com.github.ben-manes.versions' apply plugin: 'com.github.triplet.play' dependencies { implementation 'eu.chainfire:libsuperuser:1.1.0.201907261845' implementation 'com.android.support:design:28.0.0' implementation 'com.google.zxing:android-integration:3.3.0' implementation 'com.google.code.gson:gson:2.8.5' implementation 'org.mindrot:jbcrypt:0.4' implementation 'com.google.guava:guava:28.1-android' implementation 'com.annimon:stream:1.2.1' implementation 'com.android.volley:volley:1.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.google.dagger:dagger:2.24' annotationProcessor "com.google.dagger:dagger-compiler:2.24" androidTestImplementation 'com.android.support.test:rules:1.0.2' androidTestImplementation 'com.android.support:support-annotations:28.0.0' } android { // Changes to these values need to be reflected in `.travis.yml` compileSdkVersion 28 buildToolsVersion '28.0.3' buildTypes.debug.applicationIdSuffix ".debug" dataBinding.enabled = true playConfigs { defaultAccountConfig { serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json') } } defaultConfig { applicationId "com.nutomic.syncthingandroid" minSdkVersion 16 targetSdkVersion 28 versionCode 4197 versionName "1.3.0" testApplicationId 'com.nutomic.syncthingandroid.test' testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner' } signingConfigs { release { storeFile = { def path = System.getenv("SYNCTHING_RELEASE_STORE_FILE") return (path) ? file(path) : null }() storePassword System.getenv("SIGNING_PASSWORD") ?: "" keyAlias System.getenv("SYNCTHING_RELEASE_KEY_ALIAS") ?: "" keyPassword System.getenv("SIGNING_PASSWORD") ?: "" } } buildTypes { release { signingConfig = signingConfigs.release.storeFile ? signingConfigs.release : null } debug { debuggable true jniDebuggable true renderscriptDebuggable true minifyEnabled false } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } play { serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json') track = 'beta' } /** * Some languages are not supported by Google Play, so we ignore them. */ task deleteUnsupportedPlayTranslations(type: Delete) { 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/' }