2014-05-12 16:54:26 +00:00
|
|
|
buildscript {
|
2014-08-18 09:30:03 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2014-08-25 23:51:07 +00:00
|
|
|
jcenter()
|
2014-09-16 08:43:24 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-08-16 15:32:09 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:2.1.3'
|
2016-07-20 15:50:09 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
|
2015-10-05 22:28:08 +00:00
|
|
|
classpath 'com.github.triplet.gradle:play-publisher:1.1.4'
|
2014-08-18 09:30:03 +00:00
|
|
|
}
|
2014-05-12 16:54:26 +00:00
|
|
|
}
|
|
|
|
|
2014-07-27 20:00:07 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2014-08-25 23:51:07 +00:00
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
2015-10-05 22:28:08 +00:00
|
|
|
apply plugin: 'com.github.triplet.play'
|
2014-05-12 16:54:26 +00:00
|
|
|
|
2014-05-13 08:40:54 +00:00
|
|
|
repositories {
|
2014-08-18 09:30:03 +00:00
|
|
|
mavenCentral()
|
2015-11-10 22:24:02 +00:00
|
|
|
jcenter()
|
2014-05-13 08:40:54 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2016-07-20 15:50:09 +00:00
|
|
|
compile 'eu.chainfire:libsuperuser:1.0.0.201607041850'
|
2016-08-16 15:32:09 +00:00
|
|
|
compile 'com.android.support:design:24.1.1'
|
2015-12-05 14:59:55 +00:00
|
|
|
compile 'com.google.zxing:android-integration:3.2.1'
|
2016-07-20 15:50:09 +00:00
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
2016-08-02 19:04:51 +00:00
|
|
|
compile 'org.mindrot:jbcrypt:0.3m'
|
2015-06-15 14:18:45 +00:00
|
|
|
androidTestCompile 'com.squareup.okhttp:mockwebserver:2.4.0'
|
2014-05-13 08:40:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-21 00:32:49 +00:00
|
|
|
project.archivesBaseName = 'syncthing'
|
|
|
|
|
2014-05-12 16:54:26 +00:00
|
|
|
android {
|
2015-09-16 22:58:43 +00:00
|
|
|
compileSdkVersion 23
|
2016-04-21 21:16:10 +00:00
|
|
|
buildToolsVersion "23.0.3"
|
2015-09-16 22:58:43 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
defaultConfig {
|
2015-06-28 15:43:43 +00:00
|
|
|
applicationId "com.nutomic.syncthingandroid"
|
2015-08-21 22:19:09 +00:00
|
|
|
minSdkVersion 11
|
2015-11-12 22:00:09 +00:00
|
|
|
targetSdkVersion 23
|
2016-08-24 20:36:26 +00:00
|
|
|
versionCode 102
|
|
|
|
versionName "0.8.3"
|
2014-08-22 12:38:11 +00:00
|
|
|
testApplicationId 'com.nutomic.syncthingandroid.test'
|
|
|
|
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
|
|
|
|
testHandleProfiling true
|
|
|
|
testFunctionalTest true
|
2014-08-18 09:30:03 +00:00
|
|
|
}
|
2016-04-13 21:18:38 +00:00
|
|
|
// Without this parameter, all builds fail with error:
|
|
|
|
// Execution failed for task ':mergeArmeabiDebugResources'.
|
|
|
|
// > Some file crunching failed, see logs for details
|
|
|
|
// https://code.google.com/p/android/issues/detail?id=163378
|
2016-06-25 12:14:21 +00:00
|
|
|
aaptOptions.setProperty("cruncherEnabled", false)
|
2016-04-13 21:18:38 +00:00
|
|
|
|
|
|
|
// We haven't upgraded to the new HTTP library yet.
|
|
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
|
2015-03-20 23:56:59 +00:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
2015-03-21 00:32:49 +00:00
|
|
|
if (System.getenv("key_alias")) {
|
|
|
|
storeFile = file(System.getenv("key_store"))
|
|
|
|
storePassword = System.getenv("key_store_password")
|
|
|
|
keyAlias = System.getenv("key_alias")
|
|
|
|
keyPassword = System.getenv("key_alias_password")
|
|
|
|
}
|
|
|
|
}
|
2015-03-20 23:56:59 +00:00
|
|
|
}
|
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
debuggable true
|
|
|
|
}
|
2015-03-20 23:56:59 +00:00
|
|
|
release {
|
2015-03-25 19:13:29 +00:00
|
|
|
minifyEnabled true
|
2015-05-13 14:58:48 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-android.txt'
|
2015-03-21 00:32:49 +00:00
|
|
|
if (System.getenv("key_alias")) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2015-03-20 23:56:59 +00:00
|
|
|
}
|
2014-08-18 09:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
x86 {
|
|
|
|
versionCode Integer.parseInt("4" + defaultConfig.versionCode)
|
|
|
|
ndk {
|
|
|
|
abiFilter "x86"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
armeabi {
|
2015-01-14 10:51:07 +00:00
|
|
|
versionCode Integer.parseInt("3" + defaultConfig.versionCode)
|
2014-08-18 09:30:03 +00:00
|
|
|
ndk {
|
|
|
|
abiFilter "armeabi"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fat {
|
|
|
|
versionCode Integer.parseInt("0" + defaultConfig.versionCode)
|
|
|
|
}
|
|
|
|
}
|
2014-05-12 16:54:26 +00:00
|
|
|
}
|
2014-05-17 20:57:04 +00:00
|
|
|
|
2014-06-27 15:24:23 +00:00
|
|
|
task buildNative(type: Exec) {
|
2014-08-18 09:30:03 +00:00
|
|
|
outputs.upToDateWhen { false }
|
2015-11-13 22:38:17 +00:00
|
|
|
executable = './make-all.bash'
|
2014-08-20 21:58:28 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 20:57:04 +00:00
|
|
|
task cleanNative(type: Delete) {
|
2016-04-13 21:59:50 +00:00
|
|
|
delete 'src/main/jniLibs/'
|
2014-08-18 09:30:03 +00:00
|
|
|
delete 'ext/syncthing/bin/'
|
|
|
|
delete 'ext/syncthing/pkg/'
|
2014-05-18 13:18:42 +00:00
|
|
|
}
|
2014-08-20 21:58:28 +00:00
|
|
|
|
2015-10-05 22:28:08 +00:00
|
|
|
play {
|
|
|
|
jsonFile = file('keys.json')
|
2016-02-25 13:49:35 +00:00
|
|
|
uploadImages = false
|
2015-10-05 22:28:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Some languages are not supported by Google Play, so we ignore them.
|
|
|
|
*/
|
|
|
|
task deleteUnsupportedPlayTranslations(type: Delete) {
|
|
|
|
delete 'src/fat/play/en/'
|
|
|
|
delete 'src/fat/play/da_DK'
|
|
|
|
delete 'src/fat/play/el-EL'
|
|
|
|
delete 'src/fat/play/es_EC'
|
|
|
|
delete 'src/fat/play/es_MX'
|
|
|
|
delete 'src/fat/play/fr_FR'
|
|
|
|
delete 'src/fat/play/no_NO'
|
|
|
|
delete 'src/fat/play/zh_TW'
|
|
|
|
delete 'src/fat/play/zh_CN'
|
|
|
|
delete 'src/fat/play/pt_BR'
|
|
|
|
delete 'src/fat/play/pl_PL'
|
|
|
|
delete 'src/fat/play/nb'
|
|
|
|
delete 'src/fat/play/nn'
|
2016-04-23 15:37:28 +00:00
|
|
|
}
|