Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WatchKit app submission failure; MinimumOSVersion

Tags:

ios

watchkit

Submitting WatchKit 1.2 companion app, fails during validation with this error:

ERROR ITMS-90455 "Invalid WatchKit App Bundle. The value '2.1' for the MinimumOSVersion key in info.plist in bundle 'redactedbundlename.watchkitapp' is not supported"

I do cannot find a MinimumOSVersion key in the watch app plist or settings, nor in build settings or plist for the phone app.

The only mention of anything "2.1" related is in my build settings:

enter image description here

Any ideas to diagnose this issue?

like image 237
Thompson Avatar asked Dec 15 '15 21:12

Thompson


1 Answers

Fixed it!

For some reason, you need to change WATCHOS_DEPLOYMENT_TARGET from 2.1 to 2.0.

enter image description here

You can find this in Project Settings -> "Watch App Target" -> Build Settings -> (null) - Deployment -> watchOS Deployment Target (or just search 2.1 in entire project and it should show up in the results)

I am guessing this is a bug, maybe watchOS 2.1 is still marked as 'beta' in Xcode/iTunes Connect, so that when you try to upload to iTunes Connect it rejects it due to bad version.

like image 97
JimmyJammed Avatar answered Oct 21 '22 05:10

JimmyJammed