OAuthSwift icon indicating copy to clipboard operation
OAuthSwift copied to clipboard

Swift compiler errors - Xcode 13.0 beta 3

Open johnnysay opened this issue 4 years ago • 3 comments

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)

johnnysay avatar Jul 23 '21 17:07 johnnysay

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

phimage avatar Jul 23 '21 17:07 phimage

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?

kkebo avatar Jul 28 '21 01:07 kkebo

PR are welcome

phimage avatar Jul 28 '21 05:07 phimage