views:

913

answers:

1

Created an app for adhoc distribution and installed on iphone but it is not working on the installed iphone,Tried connecting the iphone to mac and debug the app but it throws up error stating

" Error launching remote program: failed to get the task for process 907."

is there a way to debug the adhoc distribution provision file from xcode

+1  A: 

No, you can't debug an AdHoc build in XCode--setting get-task-allow to FALSE in your Entitlements.plist basically says "don't allow the debugger to connect to this", and is required for AdHoc and AppStore builds.

See

http://stackoverflow.com/questions/1003066/what-does-get-task-allow-do-in-xcode

or the documentation...

David Maymudes
thank you got some idea
Pinky