A problem occurred starting process 'command 'xxx/android-sdk-linux/build-tools/23.0.2/aidl

org.gradle.process.internal.ExecException: A problem occurred starting process 'command 'xxx/android-sdk-linux/build-tools/23.0.2/aidl''

或者

org.gradle.process.internal.ExecException: A problem occurred starting process 'command 'xxx/android-sdk-linux/build-tools/23.0.2/aapt'

如果出现这样的错误,有两种方法可以尝试

第一种:

          如果你的电脑系统是Ubuntu 6位未系统,请尝试如下操作,在终端运行:

           sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6

 

第二种:如果上述方式无效

           请查看对应目录下 aidl 或 aapt 的文件权限,并且修改

            chmod +x aidl   或者 chmod +x aapt

 

你可能感兴趣的:(Android-常见错误集合)