In-House app after update to iOS15: App need to be updated

Hi all!

I build my in-house app for my users. Everything be ok before update to iOS 15. Now app installed but lt not run and show message "App need to be updated"

I upgrade from Catalina to Big Sur, I upgrade from XCode 12.4 to 13.0 I renew my provision profiles.

But that didn't solve my problem :(((

Additional details:

  1. From XCode app starts successfully on device with iOS 15
  2. Check app with codesign tool. Everything is OK.

How fix this?

Thank you advance

That's apparently a frequent problem.

Someone seems to have found a solution here, at the end of this post:

https://developer.apple.com/forums/thread/682067

found the same issue with multiple enterprise apps once the devices were upgraded to iOS 15, specifically those apps built with manual signing in XCode. This was resolved with the following different approaches.

  • Solution 1 : We got rid of this by simply auto signing in XCode. 
  • Solution 2 : By using the latest code signature format.
  1. Step 1 : Add the flag --generate-entitlement-der under the  Build Settings >> Other Code Sign Flags in XCode
  2. Step 2 : if applicable : % codesign -s "Your Codesign Identity" -f --preserve-metadata /path/to/YOURAPP.app , follow steps from        h ttps://developer.apple.com/documentation/xcode/using-the-latest-code-signature-format 
  3. Step 3 : Copy YOUR_APPLICATION.app into a different directory : XCode>Windows>Organizer>Right Click your project and show it in finder > Right Click on the archived project and Show Packaged Contents > Products > Applications > YOURAPP.app 
  4. Step 4 : Compress it as YOURAPP.ipa (Don't use XCode's Distribute option)
  5. Step 5 : Distribute this app either through OTA or side load or through any enterprise store you might be using. 
  • Solution 3 : Update your mac to Big Sur and rebuild the App with XCode 13.x

You could try if any works for you.

In-House app after update to iOS15: App need to be updated
 
 
Q