Answers for "Error: "Filesystem" plugin is not implemented on android"

0

Error: "Filesystem" plugin is not implemented on android

App/build
 App/Pods
-App/public
+App/App/public
 App/Podfile.lock
 xcuserdata
Posted by: Guest on July-15-2021
0

Error: "Filesystem" plugin is not implemented on android

func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
         // Called when the app was launched with a url. Feel free to add additional processing here,
         // but if you want the App API to support tracking app url opens, make sure to keep this call
-        return CAPBridge.handleOpenUrl(url, options)
+        return ApplicationDelegateProxy.shared.application(app, open: url, options: options)
     }

     func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
         // Called when the app was launched with an activity, including Universal Links.
         // Feel free to add additional processing here, but if you want the App API to support
         // tracking app url opens, make sure to keep this call
-        return CAPBridge.handleContinueActivity(userActivity, restorationHandler)
+        return ApplicationDelegateProxy.shared.application(application, continue: userActivity, restorationHandler: restorationHandler)
     }
Posted by: Guest on July-15-2021

Code answers related to "Error: "Filesystem" plugin is not implemented on android"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language