Reputation: 31
I need to solve this Issue: ERROR ITMS-90068: "This bundle is invalid. The value provided for the key MinimumOSVersion '8.3' is not acceptable."
Because I was uploading my application to appstore and presented this error, my app is in the version 8.3 iOS
ThankU :*
Upvotes: 3
Views: 1671
Reputation: 1436
If you use Cocoapods you should check value IPHONEOS_DEPLOYMENT_TARGET
for example:
You should change values to 8.3 or to 8.0 (as well).
Upvotes: 1
Reputation: 28902
The problem is Apple does not allow you to set the MinimumOSVersion to 8.3 yet. (I guess because its so fresh ;) )
What you can do is to set the deployment target to 8.2 instead, that will work.
Hope that helps :)
Upvotes: 2