I cannot start the emulator after successfully creating it. There is no way for me to debug the core dump because it is not logged. This is on the stack Android & Docker, on Ubuntu 16.04. It tells me I may be on the wrong stack but does not tell me what the right stack would be.
Configs:
- Name: test_avd11
- Platform: android-26
- Abi: x86
- Tag: google_apis
- Options:
- AndroidHome: /opt/android-sdk-linux
- CustomHardwareProfileContent:
Check if platform installed
installed: true
Check if system image installed
Checking path: system-images/android-26/google_apis/x86
installed: true
Configs:
- EmulatorName: test_avd11
- Skin: 768x1280
- EmulatorOptions: -no-boot-anim -verbose
- AndroidHome: /opt/android-sdk-linux
- WaitForBoot: false
- BootTimeout: 1600
Validate AVD image
AVD image (test_avd11) exist
Start AVD image
$ /opt/android-sdk-linux/emulator/emulator “-avd” “test_avd11” “-skin” “768x1280” “-no-boot-anim” “-verbose”
Checking for started device serial…
Checking for started device serial…
Failed to start emultor, error: signal: segmentation fault (core dumped)
When I try arm instead with the following configs it is created successfully but still cannot start
Configs:
- Name: test_avd10
- Platform: android-21
- Abi: armeabi-v7a
- Tag: default
- Options:
- AndroidHome: /opt/android-sdk-linux
- CustomHardwareProfileContent:
Configs:
- EmulatorName: test_avd10
- Skin: 768x1280
- EmulatorOptions: -no-boot-anim -verbose
- AndroidHome: /opt/android-sdk-linux
- WaitForBoot: false
- BootTimeout: 1600
Validate AVD image
AVD image (test_avd10) exist
Start AVD image
$ /opt/android-sdk-linux/emulator/emulator64-arm “-avd” “test_avd10” “-skin” “768x1280” “-no-boot-anim” “-verbose”
Failed to start emultor, error: signal: segmentation fault (core dumped)
Curiously, it’s running emulator64-arm when I would expect it to use the emulator command.
What emulator can work on your stack without the no-window option?