adhoc app installation failed in iPhone , why?

后端 未结 5 2166
时光取名叫无心
时光取名叫无心 2021-02-05 11:45

I am developing an iPhone application .

As the application is location aware I am testing it on a different (where I am not present).

For that I am sending my fr

5条回答
  •  迷失自我
    2021-02-05 12:14

    It appears that the device on which your friend is trying to install your app is not able to validate the application's signature. Basically this means that the provisioning profile you sent to your friend does not match the actual signature (if any) applied when compiling for ad hoc distribution. Try checking the following:

    1. verify that you added a correct Entitlements.plist file to your application.
    2. verify that you added the Entitlements.plist file to your Ad Hoc settings for building the app.
    3. verify that the certificate you are using to sign the application (in your Ad Hoc settings) actually is valid for ad hoc distribution.
    4. verify that you actually built the application using a base sdk related to the device, not the simulator and the Ad Hoc distribution settings.
    5. verify that the provisioning profile you sent is meant for ad hoc distribution and that it includes correctly the device of your friend.

提交回复
热议问题