From 76a39ff70184186d9e00ce1a963f930907e724bf Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Thu, 12 Feb 2026 13:37:18 -0700 Subject: [PATCH] fix(webview): try direct html injection to verify rendering capability --- android/app/src/main/java/com/aethex/os/MainActivity.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 f5a6756..6299f94 100644 --- a/android/app/src/main/java/com/aethex/os/MainActivity.java +++ b/android/app/src/main/java/com/aethex/os/MainActivity.java @@ -76,7 +76,11 @@ public class MainActivity extends BridgeActivity { webView.clearFormData(); webView.clearSslPreferences(); + // TEST 1: Direct HTML Injection (Bypasses File System) + String htmlData = "

SOFTWARE RENDERING WORKING

"; + webView.loadDataWithBaseURL(null, htmlData, "text/html", "UTF-8", null); + // Force load our local test file - webView.loadUrl("file:///android_asset/public/test_red.html"); + // webView.loadUrl("file:///android_asset/public/test_red.html"); } }