iOS / Cordova: InAppBrowser not working

前端 未结 3 1952
逝去的感伤
逝去的感伤 2021-02-06 17:19

I\'m building an app for Android and iOS using Cordva (v3.3.0) and JQuery Mobile. Now I\'m trying to use the InAppBrowser plugin. On Android this works fine but on iOS the webpa

3条回答
  •  猫巷女王i
    2021-02-06 18:12

    Just found the solution.

    The following entry was missing in the iOS cordova_plugins.js File. In Android it was available....

    {
        "file": "plugins/org.apache.cordova.core.inappbrowser/www/InAppBrowser.js",
        "id": "org.apache.cordova.core.inappbrowser.InAppBrowser",
        "clobbers": [
            "window.open"
        ]
    },
    

提交回复
热议问题