Skip to content

Commit

Permalink
Merge branch 'moonpay-android-fix' into release-v4.46.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Beerosagos committed Nov 14, 2024
2 parents 3f90723 + 6392ff9 commit aa7d5d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Android: fix stuck back button after closing a dialog
- Fix authentication view glitch at startup
- Remove "No priority" from fee options
- Fix Moonpay widget loading issues

# 4.45.0
- Bundle BitBox02 firmware version v9.21.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ public void run() {
vw.getSettings().setJavaScriptEnabled(true);
vw.getSettings().setAllowUniversalAccessFromFileURLs(true);
vw.getSettings().setAllowFileAccess(true);
// For MoonPay WebRTC camera access.

// For Moonpay widget: DOM storage and WebRTC camera access required.
vw.getSettings().setDomStorageEnabled(true);
vw.getSettings().setMediaPlaybackRequiresUserGesture(false);

vw.setWebViewClient(new WebViewClient() {
Expand Down

0 comments on commit aa7d5d9

Please sign in to comment.