breautek commented on issue #1081: URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/1081#issuecomment-2706657015
I moved the issue to in-app-browser repo because In App Browser implements its own webview client and it's independent of the main cordova webview. > I traced it down into the Java Code and when > > shouldOverrideUrlLoading > > Is called it has already changed to http:// I assume you mean the [WebViewClient](https://developer.android.com/reference/android/webkit/WebViewClient#shouldOverrideUrlLoading(android.webkit.WebView,%20android.webkit.WebResourceRequest)) hook, in which case that means the JS is requesting a `http://` url. Addiionally I couldn't reproduce your issue with the provided code: ```javascript function onDeviceReady() { // Cordova is now initialized. Have fun! console.log('Running cordova-' + cordova.platformId + '@' + cordova.version); document.getElementById('deviceready').classList.add('ready'); cordova.InAppBrowser.open("https://google.com"); } ```  -- 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. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org