Swift compiler errors - Xcode 13.0 beta 3
Description:
While building with Xcode 13.0 beta 3 I got many compiler errors:
- 'open(_:options:completionHandler:)' is unavailable in application extensions for iOS
- 'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead. These errors occur in code that contains one of those lines:
-
UIApplication.shared.open(url, options: [:], completionHandler: nil) -
UIApplication.shared.open(url)For example in Handoler/OAuthSwiftOpenURLExternally.swift line 28.
OS (Please fill the version) :
- [x] iOS : 15.0
Installation method:
- [x] Swift Package Manager
Library version:
- [x] v2.2.0
Xcode version:
- [x] 13.0 (Swift 5)
I have never fixed such things but on one of my other project someone talk me about new annotation @available(iOSApplicationExtension,
https://github.com/phimage/CallbackURLKit/issues/31
In addition, according to https://developer.apple.com/documentation/xcode-release-notes/xcode-13-beta-release-notes,
Swift Packages
Resolved in Xcode 13 Beta 3
Linking Swift packages from application extension targets or watchOS applications no longer emits unresolvable warnings about linking to libraries not safe for use in application extensions. This means that code referencing APIs annotated as unavailable for use in app extensions must now themselves be annotated as unavailable for use in application extensions, in order to allow that code to be used in both apps and app extensions. (66928265)
@phimage Do you plan to add that annotation?
PR are welcome