1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-26 14:21:16 +00:00

Disable release signing config to fix travis

This commit is contained in:
Felix Ableitner 2016-12-16 22:42:09 +09:00
parent a77c8dce8a
commit 9670547e1b

View file

@ -44,6 +44,8 @@ android {
testApplicationId 'com.nutomic.syncthingandroid.test'
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
// Disabled because it breaks travis.ci
/*
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
@ -52,11 +54,8 @@ android {
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
buildTypes.release.signingConfig signingConfigs.release
*/
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8