You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/08/14 05:47:04 UTC

[GitHub] [cordova-plugin-inappbrowser] moschkom commented on issue #760: Opening links in the systembrowser stopped working on Android with plugin version 4.0.0

moschkom commented on issue #760:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/760#issuecomment-673897620


   We use GWT. Our code calls this method:
   ```
   @Override
   public void openURLInSystemBrowser(String url) {
   	inAppBrowser.open(url, "_system", null);
   }
   ```
   Which then calls this implementation:
   ```
   public native JavaScriptObject open0(String url, String windowName, String windowFeatures)/*-{
   	return $wnd.open(url, windowName, windowFeatures);
   }-*/;
   ```
   
   I think I see the Problem. We still rely on `window.open`. Thanks for the hint. I will try to replace this code with `cordova.InAppBrowser.open`. 
   
   Any idea why it is working on iOS as before?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org