syncthing-android/build.gradle

138 lines
3.8 KiB
Groovy
Raw Normal View History

2014-05-12 16:54:26 +00:00
buildscript {
repositories {
mavenCentral()
jcenter()
}
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'
classpath 'com.github.triplet.gradle:play-publisher:1.1.4'
}
2014-05-12 16:54:26 +00:00
}
2014-07-27 20:00:07 +00:00
apply plugin: 'com.android.application'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.triplet.play'
2014-05-12 16:54:26 +00:00
repositories {
mavenCentral()
2015-11-10 22:24:02 +00:00
jcenter()
}
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'
compile 'org.mindrot:jbcrypt:0.3m'
testCompile 'junit:junit:4.12'
testCompile 'org.robolectric:robolectric:3.1.2'
2015-06-15 14:18:45 +00:00
androidTestCompile 'com.squareup.okhttp:mockwebserver:2.4.0'
}
project.archivesBaseName = 'syncthing'
2014-05-12 16:54:26 +00:00
android {
compileSdkVersion 23
2016-04-21 21:16:10 +00:00
buildToolsVersion "23.0.3"
defaultConfig {
2015-06-28 15:43:43 +00:00
applicationId "com.nutomic.syncthingandroid"
minSdkVersion 11
targetSdkVersion 23
2016-08-24 20:36:26 +00:00
versionCode 102
versionName "0.8.3"
testApplicationId 'com.nutomic.syncthingandroid.test'
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
testHandleProfiling true
testFunctionalTest true
}
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
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 {
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
}
buildTypes {
debug {
applicationIdSuffix ".debug"
debuggable true
}
2015-03-20 23:56:59 +00:00
release {
minifyEnabled true
2015-05-13 14:58:48 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-android.txt'
if (System.getenv("key_alias")) {
signingConfig signingConfigs.release
}
2015-03-20 23:56:59 +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)
ndk {
abiFilter "armeabi"
}
}
fat {
versionCode Integer.parseInt("0" + defaultConfig.versionCode)
}
}
2014-05-12 16:54:26 +00:00
}
task buildNative(type: Exec) {
outputs.upToDateWhen { false }
executable = './make-all.bash'
}
task cleanNative(type: Delete) {
delete 'src/main/jniLibs/'
delete 'ext/syncthing/bin/'
delete 'ext/syncthing/pkg/'
}
play {
jsonFile = file('keys.json')
2016-02-25 13:49:35 +00:00
uploadImages = false
}
/**
* 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
}