From 345ac6b855a4af66eaeffff129d0fd4dc5a19ab5 Mon Sep 17 00:00:00 2001 From: Timothy <6560631+TimoPtr@users.noreply.github.com> Date: Wed, 18 Jun 2025 08:52:50 +0200 Subject: [PATCH] When testing with local frontend for Android 5 we need ES5 (#2704) --- docs/android/tips/lollipop_emulator.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/android/tips/lollipop_emulator.md b/docs/android/tips/lollipop_emulator.md index e904d536..6da504f3 100644 --- a/docs/android/tips/lollipop_emulator.md +++ b/docs/android/tips/lollipop_emulator.md @@ -10,3 +10,9 @@ To test the app on an Android emulator running Lollipop (Android API 21), you ne ## Updating the WebView To update the WebView, download the latest WebView APK and follow the instructions provided in this [StackOverflow post](https://stackoverflow.com/a/79514205/3289338). + +If you are building your own frontend, set the `ES5` flag to `1` during the build process. This ensures compatibility with the older WebView. + +```bash +ES5=1 script/develop +```