Reputation: 177
I have created app 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 ?
Upvotes: 8
Views: 25636
Reputation: 3535
This happens to me when I have the Watch App as the IOS companion app. The error refers to iphoneos
something, even though it only has hello world view. And it all happen in all of sudden, and few seconds ago I just successfully ran it on my watch, and it reported error after few minutes.
Here's what works for me:
Hope this help someone.
Upvotes: 0
Reputation: 769
There could be multiple solutions:
Upvotes: 2
Reputation: 755
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.
Upvotes: 1
Reputation: 141
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.
Upvotes: 6