forked from github/cordova-android
Fixes "Device still authorizing issue" #608 (https://github.com/apache/cordova-android/issues/608) Resolves #608
This commit is contained in:
+2
-1
@@ -340,7 +340,8 @@ module.exports.wait_for_emulator = function (port) {
|
||||
if ((error && error.message &&
|
||||
(error.message.indexOf('not found') > -1)) ||
|
||||
(error.message.indexOf('device offline') > -1) ||
|
||||
(error.message.indexOf('device still connecting') > -1)) {
|
||||
(error.message.indexOf('device still connecting') > -1) ||
|
||||
(error.message.indexOf('device still authorizing') > -1)) {
|
||||
// emulator not yet started, continue waiting
|
||||
return self.wait_for_emulator(port);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user