drhenchufesolar commented on issue #992:
URL: 
https://github.com/apache/cordova-plugin-inappbrowser/issues/992#issuecomment-1422246957

   ### Update 
   
   I've test this under onCreate in MainActivity (Android Studio) and it 
doesn't fix the issue:
   ```
   public class MainActivity extends BridgeActivity {
   
     @Override
     protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       WebView webView = (WebView) findViewById(R.id.webview);
       webView.getSettings().setJavaScriptEnabled(true);
       webView.getSettings().setDomStorageEnabled(true);
   
       if(webView.canGoBack()){
         webView.goBack();
       }
     }
   }
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to