Skip to content

Commit

Permalink
fix: allow File access in Webview
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Nov 16, 2023
1 parent a32c538 commit 278c09a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public void presentWebView() {
_webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
_webView.getSettings().setDatabaseEnabled(true);
_webView.getSettings().setDomStorageEnabled(true);
_webView.getSettings().setAllowFileAccess(true);
_webView
.getSettings()
.setPluginState(android.webkit.WebSettings.PluginState.ON);
Expand Down

0 comments on commit 278c09a

Please sign in to comment.