You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 91 of PluggableApplicationDelegate.swift there is the method called open func application(_ app: UIApplication, public url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Boo but this should be open func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool. Not public url: but open url:.
So an app using the PluggableApplicationDelegate currently can not handle the url it was opened with.
The text was updated successfully, but these errors were encountered:
For those facing the same problem, while they create a new Pod version (which I doubt they will at that stage), you can just use this line in your Podfile:
pod 'PluggableApplicationDelegate', :git => 'https://github.com/fmo91/PluggableApplicationDelegate.git'
In line 91 of PluggableApplicationDelegate.swift there is the method called
open func application(_ app: UIApplication, public url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Boo
but this should beopen func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool
. Notpublic url:
butopen url:
.So an app using the PluggableApplicationDelegate currently can not handle the url it was opened with.
The text was updated successfully, but these errors were encountered: