Reputation: 1332
I run my application with xcode11 and can publish it. However, I saw the following announcement published by apple;
"Starting April 2021, all iOS and iPadOS apps submitted to the App Store must be built with Xcode 12 and the iOS 14 SDK."
what exactly should I do? If I download xcode 12 and run my application, will the sdks update automatically? What should I do to install iOS 14 sdk?
Or do I need to "pod update" for my existing pods? Under "build settings" of my project "IOS Deployment Target" 10 should I change this? Should we detect "IOS Deployment Target" as supported?
Upvotes: 0
Views: 996
Reputation: 1699
As I know, all you need is:
Regeneration of Pods, as I know, is not necessary. But you can catch some bugs, so it can be useful for further development.
P.S. one of bugs which I catched after Pods update: build failed when I tried to test application with Release build configuration. To fix it I changed ONLY_ACTIVE_ARCH
build setting of my Pods.xcodeproj
-file to 'Yes' for all of my build configurations (Debug, Release, etc.).
Upvotes: 2
Reputation: 100503
What exactly should I do?
You only need to download the new xcode , run your app and archive it with that version of xcode
If I download xcode 12 and run my application, will the sdks update automatically?
sdk 14 is shipped with the version no thing to do
Do I need to "pod update" for my existing pods?
No you don't have to
Upvotes: 3