2010-10-15 75 views
0

我很抱歉再次提出這個問題,我尋找了很多論壇,關於這個問題的網站,即使我確實按照蘋果公司的指令http://developer.apple.com/library/ios/#qa/qa2010/qa1710.html,但它對我來說似乎很有幫助。我upraged我的Xcode的SDK 3.2.4和iOS 4.1,一切都很好,發展,但是當我建立即席與分佈,應用程序無法與錯誤啓動:在xcode 3.2.4中啓動adhoc應用程序時出錯

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

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

The program being debugged is not being run.

The program being debugged is not being run.

我創造了Entitlements.plist與配置:

<key>application-identifier</key> 

<string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string> 

<key>get-task-allow</key> 

<false/> 

<key>keychain-access-groups</key> 

<array> 

    <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string> 

</array> 

但沒有什麼改變。任何人都可以幫助我?非常感謝。

回答

0

您無法直接從xcode運行分發版本。而是轉到組織者,選擇您的設備,然後將應用程序拖入應用程序部分。然後,您可以像使用應用商店中的任何應用一樣從設備上運行它。

相關問題