Our iOS app release is planned in mid of this August (before iOS 14 public and Xcode 12 GM release which is expected to be released in September).
As per iOS 14 beta, have used below code to handle few scenarios to support my app in iOS 14.
I would really like to know if the above code snippet will cause app rejection? If in case yes, what would be the alternate way to handle iOS 14 support.
As per iOS 14 beta, have used below code to handle few scenarios to support my app in iOS 14.
Added below key to my application's Info.plist to prevent the automatic alert to update the users limited photo library selection in iOS 14.
2. Used below to handle few scenario.PHPhotoLibraryPreventAutomaticLimitedAccessAlert = YES
As per this link : https://developer.apple.com/support/beta-software Apps that are created using beta versions of Xcode or that are built for beta versions of an OS will not be accepted on the App Store.if (@available(iOS 14.0, *)) {}
I would really like to know if the above code snippet will cause app rejection? If in case yes, what would be the alternate way to handle iOS 14 support.