Error:org.gradle.process.internal.ExecException: A problem occurred starting process 'command '/home/codywang/Documents/android-sdk-linux/build-tools/21.1.2/aapt'' :app:mergeDebugResources FAILED Error:Execution failed for task ':app:mergeDebugResources'.
Error: org.gradle.process.internal.ExecException: A problem occurred starting process 'command '/home/codywang/Documents/android-sdk-linux/build-tools/21.1.2/aapt''
Run Code Online (Sandbox Code Playgroud)
当我尝试从Android Studio 1.1在Ubuntu 14.04中编译时,我不断收到这些错误.
我在互联网上做了一些研究,发现这可能是由我的64位Ubuntu引起的,它与32位android-sdk不兼容
所以我尝试了以下命令来安装i386软件包.
$ sudo dpkg --add-architecture i386
$ sudo apt-get update
$ sudo apt-get install libc6:i386 libstdc++6:i386 lib32z1 libsdl1.2debian:i386
Run Code Online (Sandbox Code Playgroud)
我已经安装了所有这些库,但仍然遇到了同样的错误.有关如何解决这个问题的任何想法?谢谢!