Docker中的Android模拟器

前端之家收集整理的这篇文章主要介绍了Docker中的Android模拟器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图在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

最佳答案
仅作为一个FYI:我在基于FROM ubuntu:16.04的docker上遇到了这个问题
 最后通过安装“file”apt-get安装文件解决了这个问题

显然模拟器使用文件查看$SHELL,如果它不包含“x86_64”,则认为它是32位.

猜你在找的Docker相关文章