diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2015-06-13 21:50:57 +0200 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2015-06-13 21:50:57 +0200 |
commit | 8f367b7210dc2883b91f8ef1538ce86013fc096a (patch) | |
tree | 743595c8c5066bfd2c951a3fef0a71ab3365571d /OpenKeychain/build.gradle | |
parent | 3b67992babe7c60a336bf1243dd4245fc7a4b0ae (diff) | |
download | open-keychain-8f367b7210dc2883b91f8ef1538ce86013fc096a.tar.gz open-keychain-8f367b7210dc2883b91f8ef1538ce86013fc096a.tar.bz2 open-keychain-8f367b7210dc2883b91f8ef1538ce86013fc096a.zip |
fix instrumentation test(s)
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r-- | OpenKeychain/build.gradle | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle index 3c239d44b..7fae773f0 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 |