Skip to content

Commit 444aa79

Browse files
author
Revan Sopher
committed
Increate ADB timeout to 60 seconds to avoid flakiness.
Shoud help solve ShellCommandUnresponsiveException failures. Change-Id: If72a9251569045310d0df252d54ceee81d15c2d4
1 parent 8993e7e commit 444aa79

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

firebase-common/firebase-common.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ apply plugin: LicenseResolverPlugin
77
def androidVersion = 26
88

99
android {
10+
adbOptions {
11+
timeOutInMs 60 * 1000
12+
}
13+
1014
lintOptions {
1115
abortOnError false
1216
}

firebase-firestore/firebase-firestore.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ protobuf {
4040
}
4141
}
4242
android {
43+
adbOptions {
44+
timeOutInMs 60 * 1000
45+
}
46+
4347
compileSdkVersion androidVersion
4448
defaultConfig {
4549
targetSdkVersion androidVersion

firebase-functions/firebase-functions.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ apply plugin: LicenseResolverPlugin
88
def androidVersion = 26
99

1010
android {
11+
adbOptions {
12+
timeOutInMs 60 * 1000
13+
}
14+
1115
lintOptions {
1216
abortOnError false
1317
}

tools/apksizetool/default.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Default build settings
33
*/
44
android {
5+
adbOptions {
6+
timeOutInMs 60 * 1000
7+
}
58

69
lintOptions {
710
abortOnError false

0 commit comments

Comments
 (0)