lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
1
2
3
4
5
6
7
#!/bin/bash
if [ $TEST == "arm" ]; then
  curl -L https://dl.google.com/android/repository/android-ndk-${NDK_VERSION}-linux-x86_64.zip -O
  unzip android-ndk-${NDK_VERSION}-linux-x86_64.zip 2> /dev/null > /dev/null
  echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
  emulator -avd test -no-audio -no-window &
fi