Can I debug my iOS app on a device without adding it to the Apple provisioning portal?

debugging, ios, ios-provisioning

Solution

No. You need to be running on a device that is enabled for development. This will need to have been added to your development portal.

An enterprise-signed app won't even allow a debug connection.

You can run it in the simulator and attach to that without a provisioning profile however.

Problem

I want to run my app in the debugger. Is there any way to do this without adding it to the apple portal? Or perhaps an enterprise provisioning profile be used for debugging?

Original source

Related problems