You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't use ARM64 or X86 or X64 emulators (unsupported)
But when I'm using any emulator using armeabi-v7a, I keep getting an update error message (and the emulator's not starting)
INFO | Your emulator is out of date, please update by launching Android Studio:
- Start Android Studio
- Select menu "Tools > Android > SDK Manager"
- Click "SDK Tools" tab
- Check "Android Emulator" checkbox
- Click "OK"
Tried running sdkmanager --update after installing the emulator, but it did not help.
Environment
Using mingc/android-build-box:latest in Bitbucket pipelines
Script -
export ADB_INSTALL_TIMEOUT=30
# Preprations
npm i -g envinfo detox-cli && envinfo
echo fs.inotify.max_user_watches=524288 | tee -a /etc/sysctl.conf && sysctl -p
# Create repositories if repositories.cfg file doest not exists.
touch /opt/android-sdk/.android/repositories.cfg
# Insall and run emulatorecho yes | sdkmanager --install --channel=0 --verbose "system-images;android-25;google_apis;armeabi-v7a"echo yes | sdkmanager --licenses
echo no | avdmanager --verbose create avd --force --name "release-mu" --package "system-images;android-25;google_apis;armeabi-v7a" -c 200M
emulator -avd release-mu -no-audio -no-window -no-boot-anim -gpu off -wipe-data -partition-size 1024 &
adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done; input keyevent 82'echo"Emulator is ready"
sleep 180
# .... .... ....
The text was updated successfully, but these errors were encountered:
The issue
Running into kind of a dead lock with emulators, I read most of the related issues, for example:
#18
#58
I can't use ARM64 or X86 or X64 emulators (unsupported)
But when I'm using any emulator using
armeabi-v7a
, I keep getting an update error message (and the emulator's not starting)Tried running
sdkmanager --update
after installing the emulator, but it did not help.Environment
Using
mingc/android-build-box:latest
in Bitbucket pipelinesScript -
The text was updated successfully, but these errors were encountered: