Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR ITMS-90512: Invalid sdk value... 8.2 is higher than maximum allowed value of 10.3?

Trying to upload a binary, which includes a watch app. The error I'm getting (which I wasn't getting a couple days ago) is the value provided for LC_VERSION_MIN_IPHONEOS for the watchkit extension is 8.2 which is greater than the maximum allowed value of 10.3... apparently 8.2 > 10.3?

I'm updated to the latest XCode, 8.3, that didn't fix the problem. Tried changing the iOS deployment target for the watch app and extension, no apparent effect on the message.

like image 568
Adam Avatar asked Mar 29 '17 22:03

Adam


3 Answers

Update: it's fixed!

I have submitted a bug to Apple. They have replied that they are aware of the problem and have people looking into it. They will contact me when they have resolved the issue. I'll post an update here when they do.

like image 142
dar512 Avatar answered Nov 12 '22 11:11

dar512


This is not related to Xcode 8.3, the error is in the Apple validation process. I had an app in review (no problems in uploading it) that got rejected because the user provided for login had expired. I made no changes to the app, just activated the user and submitted. I have the error now.

Edit: I can also confirm that if Watch support is removed everything goes well.

like image 42
Paulo Rocha Avatar answered Nov 12 '22 11:11

Paulo Rocha


EDIT: This is problem on Apple side and nothing to do with Xcode. This is only effecting apps with WatchKit.

I just uploaded one my apps today that has a watchkit extension. Try this, it may or may not help.

  • Xcode -> Product Clean

  • Xcode -> Quit

  • In a console terminal do > rm -rf /Users/your_mac_user/library/Developer/Xcode/DerivedData/*

  • Relaunch Xcode and project

  • Go to your Xcode -> Build Settings for your iPhone app and make sure its set to 8.0 for debug and release

enter image description here

  • Now go to both your watch and watch extensions and make sure the Build setting is set to 8.2

  • Archive and upload again.

enter image description here

like image 3
Sam B Avatar answered Nov 12 '22 11:11

Sam B