App Store is installing the wrong version

We just updated our app to fix all the issues that were introduced by iOS9. The update was reviewed and released to the App Store. But when we download the app, the App store install the previous version (1.1.1) instead of the new version (1.1.2)


iTunes Connect List the version as ready "1.1.2 Ready for Sales"

The App Store lists the app with the new update "What's New in Version 1.1.2"


What ae we supposed to do to get it to actually install the new version.

I found a workaround this. I was using the app update checker code to pull from the App Store version as well. And the pop up would show up after updating. In my code, it would still say the version available in the app store is the previous version.

So the workaround and immediate way I found is to hardcode the latest version number on a website or if you're using a database, you can do it that way too. And instead of making the network call to the App Store with your bundle ID, you can just make a network call to pull from that block with the hardcoded version number on your website. That's what I do for the Android version and the pop up goes away after updating and coming back to the app. Just make sure to update the version number each time you push out an update :)

App Store is installing the wrong version
 
 
Q