I rewrote an app I have on the iTunes store using iOS5.
- The original app had support for armv6 and armv7 on iOS 4.2 and higher.
- The new app has only support for armv7 on iOS5.0 and higher (since iOS5 API is only supported on armv7)
So there's the issue. iTunes won't let me upgrade the app because it would mean some users won't be able to get an upgrade. Error message:
This bundle is invalid.
UIRequiredDeviceCapabilities
in theInfo.plist
may not contain values that would prevent this application from running on devices that were supported by previous versions.
The value in UIRequiredDeviceCapabilities
is armv7. armv7 is required b/c iOS5 api.
What do I do? Do I pull the old app and replace it with the new one? What about my customers? How will they be able to upgrade? Are there any workarounds?