1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-03 17:02:13 +01:00

Pebble: Attempt to fix app configuration webview

See #3373 and possibly #3424
This commit is contained in:
José Rebelo 2023-12-26 16:48:59 +00:00
parent f4d7a6b490
commit b77ba8b74c

View File

@ -104,6 +104,9 @@ public class WebViewSingleton {
webSettings.setDomStorageEnabled(true);
//needed for localstorage
webSettings.setDatabaseEnabled(true);
// #3373 #3424 - Fix configuration for pebble apps
// TODO: this should use a WebViewAssetLoader
webSettings.setAllowFileAccess(true);
}
}