iPhone Debugging Error launching remote program: failed to get the task for process 907

前端 未结 3 1645
星月不相逢
星月不相逢 2021-01-07 06:50

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 throw

相关标签:
3条回答
  • 2021-01-07 07:14

    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

    What does get-task-allow do in Xcode?

    or the documentation...

    0 讨论(0)
  • 2021-01-07 07:25

    Restarting the xcode worked fine for me

    0 讨论(0)
  • 2021-01-07 07:31

    I started having this error in my projects in XCode 4.2, and had a tough time figuring it out with the new project layout.

    Make sure you go into the Project Settings and change the Code Signing Identity to a development profile for the Debug setting in the target settings. It's a bit easy to miss because the Project settings come up first, and there are identical looking Code Signing Identity settings there. But Target settings trump Project settings.

    If that still doesn't work in XCode 4.2, go to "Edit Schemes" - in the project drop down, which is just to the right of the stop button, in the left segment of that custom pop-up. Select "Run" and make sure Build Configuration is set to "Debug".

    In prior versions of XCode, it used to tell you whether you were in debug or release right up front; I haven't found where it's that obvious with the new "Schemes".

    0 讨论(0)
提交回复
热议问题