aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-06-13 21:50:57 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-06-17 18:51:50 +0200
commit5e4842ab64733fbf07e32af0e6c5f21fad743874 (patch)
treefef1dff5d70b1acf68f86f92892ab2a26379202a /OpenKeychain/build.gradle
parent66e7876abd3c4a5a3d1002386d6445e64e91ae97 (diff)
downloadopen-keychain-5e4842ab64733fbf07e32af0e6c5f21fad743874.tar.gz
open-keychain-5e4842ab64733fbf07e32af0e6c5f21fad743874.tar.bz2
open-keychain-5e4842ab64733fbf07e32af0e6c5f21fad743874.zip
fix instrumentation test(s)
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle12
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 511183d10..b640e7ebe 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -21,10 +21,14 @@ dependencies {
testCompile 'org.robolectric:robolectric:3.0-rc3'
// UI testing with Espresso
- androidTestCompile 'com.android.support.test:runner:0.2'
- androidTestCompile 'com.android.support.test:rules:0.2'
- androidTestCompile 'com.android.support.test.espresso:espresso-core:2.1'
- androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.1'
+ androidTestCompile 'com.android.support.test:runner:0.3'
+ androidTestCompile 'com.android.support.test:rules:0.3'
+ androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
+ androidTestCompile ('com.android.support.test.espresso:espresso-contrib:2.2') {
+ exclude group: 'com.android.support', module: 'appcompat'
+ exclude group: 'com.android.support', module: 'support-v4'
+ exclude module: 'recyclerview-v7'
+ }
// Temporary workaround for bug: https://code.google.com/p/android-test-kit/issues/detail?id=136
// from https://github.com/googlesamples/android-testing/blob/master/build.gradle#L21