Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WARNING : "SDK Version Issue". xcode 10.1

Tags:

xcode

ios

swift

sdk

when upload my app with xcode 10.1 i'm getting the Warning

WARNING ITMS-90725: "SDK Version Issue. This app was built with the iOS 12.0 SDK. Starting March 2019, all iOS apps submitted to the App Store must be built with the iOS 12.1 SDK or later, included in Xcode 10.1 or later.

My project was developed in swift 4.2.1 and xcode 10.1

like image 718
Karol Idarmi Avatar asked Dec 14 '18 20:12

Karol Idarmi


3 Answers

Make sure you have the latest version of Xcode.

If you do have Xcode 10.1 (or later) this is just a reminder that all of your apps need to comply with these terms.

Also regardless of Xcode version if your app did archive/build successfully you have nothing to worry about at the moment.

EDIT:

Now ALL APPS and GAMES submitted to the AppStore must have the 12.1 SDK or they will be rejected.

If your app is still rejected and you have Xcode 10.1 (or later), update Xcode or reinstall, as the SDK was not integrated correctly by the system.

like image 178
Nol4635 Avatar answered Nov 07 '22 13:11

Nol4635


Also, if you're running a CI/CD pipeline/workflow (such as Bitrise), make sure you've updated the Xcode version in the tool's Stack as well. In my case, my local version was correct but the Xcode version in my pipeline referenced 10.0 rather than 10.1

like image 37
Native_Mobile_Arch_Dev Avatar answered Nov 07 '22 12:11

Native_Mobile_Arch_Dev


This trick worked for me: Download Xcode 10.2, extract and just copy(iPhoneOS12.2.sdk Folder): or direct download zip : https://drive.google.com/file/d/1ZGANCBE90Ogt4FD_y_ACgcIFP0qQapSf/view?usp=sharing

Right click->Show Package Contents->Contents->Developer->Platforms->iPhoneOS.platform->Developer->SDKs->iPhoneOS12.2.sdk and past it same directory on your Xcode. after this close your Xcode, reopen Xcode , Archive and upload again.

like image 1
Nikhilesh Avatar answered Nov 07 '22 13:11

Nikhilesh