user2070259
user2070259

Reputation: 285

How do I run Release configuration on my device through Xcode

I can test a release configuration just fine in the simulator, but it doesn't work on my device. I can install the app package onto the device just fine, but it won't run directly from xcode. Is there a way to do this?

Upvotes: 2

Views: 127

Answers (1)

Chris C
Chris C

Reputation: 3251

Go into the build settings for that target and change the Code Signing Identity for Release: Any iOS SDK to a developer profile instead of distribution. This will let you run a release configuration in the debugger. Just remember to revert it back to distribution when you submit!

Upvotes: 3

Related Questions