Bert Otte
Bert Otte

Reputation: 19

How do i prevent SDK Version Issue when Using nativescript sidekick to build my ios app

When i build my app using Nativescript Sidekick, i get a warning , which is confirmed by mail from apple, telling me that i need to deliver my app using the latest SDK version.

ITMS-90725: SDK Version Issue - This app was built with the iOS 12.4 SDK. Starting April 2020, all iOS apps submitted to the App Store must be built with the iOS 13 SDK or later, included in Xcode 11 or later.

But i assume this is the SideKick's xcode, as i am building my IPA through sidekick. Do i need to do anything or will sidekick be updating before April2020 ????

Upvotes: 0

Views: 184

Answers (1)

FrontEnd-er
FrontEnd-er

Reputation: 663

Try to update your project with nativescript 6.5.0 and install xcode11 from https://developer.apple.com/download/more/

1.Update nativescript using this command:-

npm install -g nativescript

2.If your code is not migrate with nativescript 6 then use this command:-

tns migrate

3.After update your project node_modules and tns_core_modules:-

tns update

4.Add platform

tns platform add android

Upvotes: 1

Related Questions