Use new officially supported way for local unit tests, many dependencies upgraded for this, temporary disabled separate debug builds

This commit is contained in:
Dominik Schürmann
2015-06-11 00:05:13 +02:00
parent 05fcbcae7b
commit d16b09b2a6
131 changed files with 151 additions and 234 deletions

View File

@@ -5,7 +5,7 @@ buildscript {
dependencies {
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
classpath 'com.android.tools.build:gradle:1.1.3'
classpath 'com.android.tools.build:gradle:1.2.3'
classpath files('gradle-witness.jar')
// bintray dependency to satisfy dependency of openpgp-api lib
classpath 'com.novoda:bintray-release:0.2.7'
@@ -19,7 +19,7 @@ allprojects {
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
gradleVersion = '2.4'
}
subprojects {
@@ -28,7 +28,7 @@ subprojects {
}
}
// Ignore tests for external dependency
// Ignore tests for external spongycastle
project(':extern:spongycastle') {
subprojects {
// Need to re-apply the plugin here otherwise the test property below can't be set.