skip to Main Content

I have created have in react-native. I can run app in Xcode simulator successfully. But when I created ipa file and run in IOS device, it gives me error ‘app cannot be installed because its integrity can not be verified’.
Can anybody tell what is the issue ?

4

Answers


  1. Please add Device UDID to the App Store developer account. And also update provision profile that includes device UDID and after that create new ipa using updated provision profiles.

    Login or Signup to reply.
  2. I also suffered from this but found the correct solution. So the issue is When making a build either build it for production and upload it to the app store or build it using an ad-hoc profile.

    An ad-hoc profile is an Internal testing profile that allows the app to be installed and used in certain specified iPhones using UIDs.

    Login or Signup to reply.
  3. There could be multiple solutions:

    1. Restart your iOS device if you have recently updated iOS version and also restart the Xcode.
    2. Run your app in device and check the VPN & Device Management in Settings App -> General -> VPN & Device Management. It will asks for the certificate access.
    3. Check the Developer Mode is enabled on the device or not.
    4. Check Keychain if profiles & certificates are trusted.
    Login or Signup to reply.
  4. In my case the problem was in expired provisioning profile

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search