0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

Increase ADB timeouts (helps slow ARM emulators)

This commit is contained in:
Mike Hardy 2018-09-13 21:44:01 -05:00 committed by Tim Rae
parent bcd5451e19
commit 6759201a13

View File

@ -18,6 +18,10 @@ android {
ndk {
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}
// This enables long timeouts required on slow ARM emulators, e.g. Travis
adbOptions {
timeOutInMs 10 * 60 * 1000 // 10 minutes
}
}
lintOptions {
abortOnError false