Hi Everyone,
I am really struck with this issue "Unable to install . This app cannot be installed because its integrity could not be verified".
I have a xcframework lets say "use_me.xcframework" SDK shared by vendor team. Now my objective is to create a wrapper can be invoked in iOS App using the functionalities available in use_me.xcframework SDK. So i proceeded with creating swift framework(since i am proficiency with swift language), In that i embedded use_me.xcframework and written all the functions and it can be exported to other app with automatically generated Swift.h file.
Now the swift framework cannot be used directly in one of our project. Due to the limitation we need to create a wrapper in Objective C around that swift framework. Now this is also fine as i am able to access the methods from the wrapper. Now the error part is coming. After generated the wrapper, when i am trying to import in any other iOS app and if i am trying to install the app after the build in device, I am getting "Unable to install . This app cannot be installed because its integrity could not be verified". Solutions i tried and not working: Tried with different provisioning profiles, certifications and Bundle ID
- checked with different embed options for use_me.xcframework- Embed and Sign - Code object not signed at all error
- Embed without sign - unable to install the app
- Do not embed - Unable to install the app, Integrity could not be verified issue
- Checked folder and folder reference
- App name with info.plist appname
- Checked for incorrect script file
Please help me to resolve this issue, as i am struck with this for the past 2weeks.