From 537900cb71305147d2e1a35ea1df1f63819c815e Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Wed, 11 Feb 2026 22:37:41 -0700 Subject: [PATCH] fix(webview): use index_nomodule.html to test if ESM is the blocker --- .../main/assets/public/index_nomodule.html | 135 ++++++++++++++++++ .../main/java/com/aethex/os/MainActivity.java | 2 +- 2 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 android/app/src/main/assets/public/index_nomodule.html diff --git a/android/app/src/main/assets/public/index_nomodule.html b/android/app/src/main/assets/public/index_nomodule.html new file mode 100644 index 0000000..52b2fc0 --- /dev/null +++ b/android/app/src/main/assets/public/index_nomodule.html @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + AeThex OS - Operating System for the Metaverse + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + diff --git a/android/app/src/main/java/com/aethex/os/MainActivity.java b/android/app/src/main/java/com/aethex/os/MainActivity.java index dd07a1f..09fd0fc 100644 --- a/android/app/src/main/java/com/aethex/os/MainActivity.java +++ b/android/app/src/main/java/com/aethex/os/MainActivity.java @@ -70,6 +70,6 @@ public class MainActivity extends BridgeActivity { // SWITCH TO REAL APP // Using "file:///android_asset/public/" base path which matches the physical structure // AND ensuring we load index.html - webView.loadUrl("file:///android_asset/public/index.html"); + webView.loadUrl("file:///android_asset/public/index_nomodule.html"); } }