gh-116622: Add Android test script (#121595)

Adds a script for running the test suite on Android emulator devices. Starting
with a fresh install of the Android Commandline tools; the script manages
installing other requirements, starting the emulator (if required), and
retrieving results from that emulator.
This commit is contained in:
Malcolm Smith 2024-08-16 06:00:29 +01:00 committed by GitHub
parent e913d2c87f
commit f84cce6f25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 634 additions and 90 deletions

View file

@ -28,7 +28,7 @@ ndk_version=26.2.11394342
ndk=$ANDROID_HOME/ndk/$ndk_version
if ! [ -e $ndk ]; then
log "Installing NDK: this may take several minutes"
log "Installing NDK - this may take several minutes"
yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "ndk;$ndk_version"
fi