Adriana Moya
Adriana Moya

Reputation: 31

ERROR ITMS-90068: "This bundle is invalid. The value provided for the key MinimumOSVersion '8.3' is not acceptable."

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

Answers (2)

biloshkurskyi.ss
biloshkurskyi.ss

Reputation: 1436

If you use Cocoapods you should check value IPHONEOS_DEPLOYMENT_TARGETfor example:

enter image description here

You should change values to 8.3 or to 8.0 (as well).

Upvotes: 1

LinusG.
LinusG.

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

Related Questions