aharris88
aharris88

Reputation: 3630

How to Debug Phonegap Using the PhoneGap Developer App

Phonegap just came out with a way to instantly see your changes to your phonegap app using a local server by using this command:

phonegap serve

And then by downloading the PhoneGap Developer App. The instructions are here: http://app.phonegap.com/

But I'm used to being able to go to about:inspect in Chrome to use remote debugging (http://www.adamwadeharris.com/remote-debugging-in-phonegap-with-chrome-devtools/), but when I go to this page while the Phonegep Developer App is running, nothing shows up underneath the name of my phone. Is there a way to do this with the PhoneGap Developer App?

Upvotes: 7

Views: 1919

Answers (3)

harsa_
harsa_

Reputation: 632

AppGyver's Steroids tooling provides a similar companion app to the PhoneGap Developer App, as well as access to the Chrome Inspector.

You can run Steroids in your Cordova project directly without modifying any files.

(Disclaimer: I'm a programmer for AppGyver.)

Upvotes: 1

MichaelS
MichaelS

Reputation: 7103

In order to remote debug on Android with Chrome, while running in Phonegap Developer App, you should use an apk that was built in debug mode.

You can clone the app repo and build it yourself. You can also download the debug mode apk from my blog.

Upvotes: 3

Raymond Camden
Raymond Camden

Reputation: 10857

It is not supported. You will need to use something like Weinre instead.

Upvotes: 5

Related Questions