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?
2
Answers
What exactly should I do?
If I download xcode 12 and run my application, will the sdks update automatically?
Do I need to "pod update" for my existing pods?
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 myPods.xcodeproj
-file to ‘Yes’ for all of my build configurations (Debug, Release, etc.).