I Have build my hybrid application using cordova, generated APK, and installed it on my blustacks emulator.
The question is how to debug this application using chrome inspector ?
I Have build my hybrid application using cordova, generated APK, and installed it on my blustacks emulator.
The question is how to debug this application using chrome inspector ?
I'm now working on Cordova project and use NetBeans + Chrome inspect for debugging. Running projects from NetBeans in android emulator(from SDK) you can easily connect with chrome://inspect
. NetBeans is good for debugging native-side elements while Chrome inspect is pretty good in logging nested javascript objects.
Chrome debugging needs adb, be sure it's started with:
adb kill-server
adb start-server
(tested with bluestacks)