| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| main/ | 08-Apr-2025 | - | 902 | 636 | ||
| README.md | D | 08-Apr-2025 | 885 | 31 | 20 |
README.md
1# JavaScriptEngine Demo App 2 3**See this page rendered in [Gitiles 4markdown](https://android.googlesource.com/platform/frameworks/support/+/androidxx-main/javascriptengine/integration-tests/testapp/README.md).** 5 6The JavaScriptEngine demo app serves as both a practical demonstration how to use 7the latest AndroidX Webkit APIs and as a means to exercise those APIs for manual 8testing. 9 10## Building the demo app 11 12```shell 13cd frameworks/support/ 14 15# Optional: you can use Android Studio as your editor 16./studiow 17 18# Build the app 19./gradlew :javascriptengine:integration-tests:testapp:assembleDebug 20 21# Install the app 22./gradlew :javascriptengine:integration-tests:testapp:installDebug 23 24# Check for Lint warnings 25./gradlew :javascriptengine:integration-tests:testapp:lintDebug 26 27# Optional: launch the app via adb 28adb shell am start -n com.example.androidx.javascriptengine/.MainActivity 29``` 30 31