aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2017-12-15 13:14:10 -0800
committerGitHub <noreply@github.com>2017-12-15 13:14:10 -0800
commite741403b6199bdfefd2ec5c27548a8ebf7a7f148 (patch)
treeac006a52753a99d73575f6c9f4a7316d97ea656c /build.gradle
parent1bcd42813b8b60ac030d036bda2bffeeff87cf49 (diff)
downloadmobly-bundled-snippets-e741403b6199bdfefd2ec5c27548a8ebf7a7f148.tar.gz
Handle a possible race condition in wifi/bt toggle. (#91)
E.g. if BT was in the process of turning off when we called `btEnable`, BT would finish turning off before turning on again, but the `btEnable` call would timeout before that. Same situation for `btDisable` and wifi toggles.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index 36895c8..4523835 100644
--- a/build.gradle
+++ b/build.gradle
@@ -77,12 +77,12 @@ dependencies {
compile 'com.android.support.test:runner:0.5'
compile 'com.google.android.mobly:mobly-snippet-lib:1.2.0'
compile 'com.google.code.gson:gson:2.8.2'
- compile 'com.google.guava:guava:23.1-android'
- compile 'com.google.errorprone:error_prone_annotations:2.1.1'
+ compile 'com.google.guava:guava:23.4-android'
+ compile 'com.google.errorprone:error_prone_annotations:2.1.3'
- testCompile 'com.google.errorprone:error_prone_annotations:2.1.1'
- testCompile 'com.google.guava:guava:23.1-android'
- testCompile 'com.google.truth:truth:0.36'
+ testCompile 'com.google.errorprone:error_prone_annotations:2.1.3'
+ testCompile 'com.google.guava:guava:23.4-android'
+ testCompile 'com.google.truth:truth:0.37'
testCompile 'junit:junit:4.12'
}