jacobg
jacobg
Where does `callback.first.onRequestPermissionResult` in `CordovaInterfaceImpl` call to?
Is this the same issue? https://issues.apache.org/jira/projects/CB/issues/CB-13990
In case anyone is interested, I wrote a script that patches the plugin in my build, as follows: `patchInAppBrowser.js` ``` var replace = require("replace"); var path = require("path"); // Patch...
I just switched from UIWebView to WkWebView, and so the patch script in my comment above just needs to be changed from editing `CDVUIInAppBrowser.m` to `CDVWKInAppBrowser.m`. However, I am noticing...
@faisakhtar Yes, I wrote a wrapper function that checks if in-app browser has been opened at least once. If not, then it opens and closes the window one time, before...
If you set the user agent, it bypasses Google's webview block. Our app had to do this, because it's a kiosk app and it's crucial that the google login info...
I'm also running into this issue. I'll have to check if a build hook can add a pod post-install script to work around this bug: https://stackoverflow.com/a/37289688/1237919
Thanks @amorey. I think the case it misses though is if multiple callers try to load the same script simultaneously. Since the bundleId is not defined before the async load,...
Currently I'm just using it for google maps, so reset() won't hurt me right now. But I'm just anticipating in case there's an additional use-case. And it may be useful...
@amorey That's great! Thanks for letting me know!