红联Linux门户
Linux帮助

ubuntu环境开发android时候无法找到aapt

发布时间:2015-08-16 10:01:48来源:linux网站作者:指尖残雪

环境:ubuntu kylin 14.04系统

android使用adt-linux64位

出现错误的内容:

 /usr/adt-bundle-linux-x86_64-20140321/sdk/build-tools/android-4.4.2/aapt: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
/usr/adt-bundle-linux-x86_64-20140321/sdk/build-tools/android-4.4.2/aapt: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory


原因:原因是Android sdk的文件都是在32位的库编译的,在64位系统上无法找到对应的库。

解决方法:

首先执行 : sudo apt-get install lib32stdc++6

此时执行: sudo apt-get install lib32z1 lib32z1-dev

运行aapt,问题解决.

注意:软件开发路径里面不要含有中文,有时候也会出现上述情况。


不能自动生成R.java文件原因:

1.项目路径有中文

2.版本不匹配,运行sdk manager下载相应版本。

3.clear项目(一般没用)


解决64位Ubuntu无法使用adb、aapt的32位兼容问题:http://www.linuxdiyf.com/linux/11928.html

Ubuntu15.04安装Android开发环境 :http://www.linuxdiyf.com/linux/12523.html

Ubuntu 15.04 Android编译环境:http://www.linuxdiyf.com/linux/11971.html

基于Ubuntu 15.04 LTS编译Android5.1.0源代码:http://www.linuxdiyf.com/linux/11841.html

ubuntu 15.04编译Android-VLC:http://www.linuxdiyf.com/linux/13289.html