What happens if I upload a new version of my application to the App Store, is it just ARMv7?

I have a Ready to Sale app on iTunes connect, which is a universal app for iPhone and iPad.

My app is also suitable for ARMv6 devices like ipod touch 1g / 2g and old iPhone.

If I download a new version of my application that compiles only for the ARMv7 architecture, what happens to the ipod user? Continue using the old version?

Thanks for the support.

+4
source share
2 answers

I don’t know what will happen if you just download it, but if you add arvm7 as the required device in the old Info.plist device, users will be able to continue using the previous version and will not be able to upgrade, and new users should have an armv7 device.

+1
source

xcode does not allow downloading updates. This will give you the following error: This package is not valid. The UIRequiredDeviceCapabilities in Info.plist may not contain values ​​that would prevent this application from starting on devices that were supported by previous versions.

0
source

Source: https://habr.com/ru/post/1383526/


All Articles