I am new to phonegap and android development. May I know how can I debug javascript error on the emulator? I have heard about ADB may I know how can I use and install it on windows 7 system? I have an ajax called with jsonp but no response on emulator. However, I can call that ajax with browser on windows. May I know what went wrong?
|
You could at least log debug stuff to the adb console by calling console.log() in javascript. Maybe that would suffice? |
|||||||||||
|
|
The easiest and one of the most powerful ways is using http://debug.phonegap.com (it uses Weinre in the background, if you care). You just
Things you can do (similar to Firebug or Web Inspector):
|
|||
|
|
|
Check out the recently published http://developer.android.com/guide/webapps/debugging.html |
|||||||||||||
|
|
Yes, you have log errors with console.log and show the LogCat tab in Eclipse. There, Web Console messages (including JS errors) will show up. It's a little verbose so you have to filter to show just the Web Console tags but it works well. Described here: SHOWING CONSOLE CONSOLE.LOG OUTPUT AND JAVASCRIPT ERRORS WITH PHONEGAP ON ANDROID/ECLIPSE |
|||
|
|
|
I've found that this works for debugging javascript errors for Android/Phonegap when testing the app through Eclipse on Windows 7. Simply go to Window > Show View > Other... Then select LogCat under the Android folder. The window/tab that just poped up is where the Android emulator will send its logs and error messages. You can detach this window and place it outside of the Eclipse IDE (I found this useful). You can also control the types of errors you see by selecting any of the 5 colored letters in the top right hand corner of the window. To hide the useless information so you just see errors, make sure you only have (E) selected. Personally, I also like to have (W) warnings selected as well as (E) errors selected. Hope that helps! |
|||
|
|
|
I'd recommend jsconsole. It lets you inject any JavaScript into the page and provides a basic console. There's a nice tutorial on remote debugging. |
|||
|
|
|
If you are willing to set up NodeJS somewhere you can do some extended debugging with John Boxall's iBug, which although was designed for the iPhone I have tested on Android and it works fine. It's basically firebug lite for mobile devices. I'm pointing to my fork cause Node changed a lot and John's code wouldn't run on a modern nodeJS so I patched it to get it up and running on nodeJS 0.2.3, YMMV on more recent versions of nodeJS. |
|||
|
|
|
If you use |
|||
|
|
|
The best solution to catch exceptions and show in your console is this code:
|
|||
|
|
|
In Eclipse you can add an hook to the android emulator back button and inspect a value on the fly. Add the See the code below. Do not forget to enable the debugging of your application from DDMS view
|
|||
|
|
