Debugging iOS Cordova App

I created an iOS application with Cordova and I'm trying to debug it using my Mac. I followed this tutorial , but when I go to Develop -> iPhone xxx , applications cannot be debugged.

I created the application using the Intel XDK tool. Is there a way to enable debugging in my iOS app?

Thanks.

EDIT

I tried to debug my application with GapDebug , but it does not recognize my application as debugging.

I created my application with a production / distribution certificate, and not with one of them. Maybe, maybe that’s why I can’t debug my application?

+5
source share
2 answers

Each application created with a cord is compiled with activated Debugmode. If this is not the case, you can change it through fooobar.com/questions/260122 / ...

Instead of debugging your application using Safari, I would recommend that you install Google Chrome and GapDebug in combination. Go to this site, check out this video - you will like this tool. It is very impressive how and how smart gapDebug handles your debugging.

solvable

As he found out, he compiled the application with the wrong certificate. Therefore, be sure to use a profile that includes a development certificate , not a distribution certificate.

+2
source

I used the distribution / production certificate to sign my application, so I could not debug it. I created a new provisioning profile with a development certificate, and now it works like a charm.

I am using GapDebug as Sitis said. This is a good tool, thanks.

+2
source

All Articles