我试图在docker容器中启动Android模拟器,但是我收到错误:
root@686d602e6ffa:~/android-sdk-linux/tools# ./emulator
ERROR: 32-bit Linux Android emulator binaries are DEPRECATED,to use them
you will have to do at least one of the following:
- Use the '-force-32bit' option when invoking 'emulator'.
- Set ANDROID_EMULATOR_FORCE_32BIT to 'true' in your environment.
Either one will allow you to use the 32-bit binaries,but please be
aware that these will disappear in a future Android SDK release.
Consider moving to a 64-bit Linux system before that happens.
但容器内的操作系统是(uname -a)
Ubuntu SMP Tue Mar 10 20:06:50 UTC 2015 x86_64 x86_64 x86_64 GNU / Linux
并手动启动emulatox64-x86工作正常:
android-sdk-linux/tools# ./emulator64-x86
emulator: ERROR: You did not provide the name of an Android Virtual Device
with the '-avd
我可以建立一个符号链接 – 但我认为这不是一个好的解决方案,因为可能有不同的架构来模拟
此模拟器也应该由Jenkins启动,它位于上面提到的容器中
更新:
正如@ user2915097建议:
root @ 686d602e6ffa:/ #file / bin / bash
/ bin / bash:ELF 64位LSB可执行文件,x86-64,版本1(SYSV),动态链接(使用共享库),用于GNU / Linux 2.6.24
最佳答案