add scritp

This commit is contained in:
Jean-Marie Mineau 2025-03-28 09:43:21 +01:00
commit df5cca3183
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
6 changed files with 90 additions and 0 deletions

11
make_emulators.sh Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/bash
IMG='system-images;android-34;default;x86_64'
BASENAME='root34'
MAX_EMU=10
sdkmanager "${IMG}"
for i in $(seq 1 "${MAX_EMU}"); do
avdmanager create avd --name "${BASENAME}-${i}" --package "${IMG}" --sdcard 512M --device medium_phone
done