0

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 ????

Bert Otte
  • 19
  • 5

1 Answers1

1

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
FrontEnd-er
  • 661
  • 4
  • 13
  • I am not using xcode , i develop on Windows and use Sidekick to create the IPA then upload on an apple through transporter... Do i have to install xcode ii on the apple only if i only use transporter ? – Bert Otte Mar 30 '20 at 13:56