Post

Replies

Boosts

Views

Activity

Comment on Unable to import local XCFramework module
Yeah, this very helpful https://developer.apple.com/documentation/swift_packages/distributing_binary_frameworks_as_swift_packages, thanks. I done this with this steps: add your XCFramework to targets in your library add binary target with path "Frameworks/NameOfYourFramework.xcframework" to targets add dependency to main target as .byName(name: "NameOfYourFramework") move your framework to folder ProjectName/Frameworks build and use your xcframework with your SPM library :)
Mar ’23
Comment on Xcode 14 & iOS 16 purple warnings starting with "[Security] This method should not .. "
No only in adMob, I found this in Xcode 14.2 in my code: func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) - in this function when return value over callback as: completionHandler(.useCredential, cred) in this block :)
Dec ’22