Minimal Android app used by cua's Android multi-touch integration tests.
The app renders a full-screen touch surface and logs every touch event to logcat as JSON:
TouchTest: {"action":"ACTION_DOWN","pointer_count":1,"pointers":[{"id":0,"x":540,"y":960}]}
TouchTest: {"action":"ACTION_POINTER_DOWN","pointer_count":2,"pointers":[...]}
The test harness (test_android_multitouch.py) installs the APK, drives gestures via sb.mobile.*, and asserts on the logcat output.
Download the latest debug APK from Releases:
https://github.com/trycua/android-touch-test-app/releases/latest/download/app-debug.apk
Requires Android SDK + JDK 17.
./gradlew assembleDebug
# output: app/build/outputs/apk/debug/app-debug.apkPushing a v* tag builds the APK and publishes it as a GitHub Release asset.