I am getting the getprop,dev.bootcomplete error after building and deploying the new debug-apk file to the Android emulator through Ionic framework.
The
This is a cordova-android bug because Google probably changed the error message when trying to run the app.
It has been fixed already and released in cordova-android 7.1.1 or newer. If you can't update to those versions do:
I think it would work if you apply this change yourself to yourAppName/platforms/android/cordova/lib/emulator.js
Change
if ((error && error.message &&
(error.message.indexOf('not found') > -1)) ||
(error.message.indexOf('device offline') > -1))
to
if ((error && error.message &&
(error.message.indexOf('not found') > -1)) ||
(error.message.indexOf('device offline') > -1) ||
(error.message.indexOf('device still connecting') > -1))