0
Time ran out in the search for your device, you can increase this time manually (not recommended), it worked with me.
Platforms android Cordova node_modules q q. js
Locate this code snippet
if (!error || "string" === typeof error) {
error = new Error(error || "Timed out after " + ms + " ms");
error.code = "ETIMEDOUT";
}
deferred.reject(error);
}, ms);
replace the ms
if (!error || "string" === typeof error) {
error = new Error(error || "Timed out after " + ms + " ms");
error.code = "ETIMEDOUT";
}
deferred.reject(error);
}, "1600");
you see your device in Android Studio?
– Marcelo Bonus
@Marcelobonus yes, and in adb tbm.
adb devices -l
it displays normally. I run a native project on Android Studio tbm, but Ionic won’t.– FernandoPaiva
try removing the android platform and add again.
– Fernando Fabreti
Try using Pdanet - http://pdanet.co/.
– leopiazzoli