Missing android-sdk-linux/tools/lib/proguard-project.txt


问题一:如果在Ubuntu搭建Android环境出现以下问题:
Missing android-sdk-linux/tools/lib/proguard-project.txt

可能时ADT和SDK的版本不匹配。如:ADT用的是16.0.0,则sdk应该用r10的,并利用SDK Manager更新所有你想要的版本。


二:关于问题
Fetching https://dl-ssl.google.com/android/repository/addons_list-1.xml
Failed to fetch URL https://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: peer not authenticated
Fetched Add-ons List successfully
Fetching URL: https://dl-ssl.google.com/android/repository/repository-5.xml
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-5.xml, reason: peer not authenticated
Done loading packages.
暂时不知道如何解决,总感觉和公司的网络环境有关。


三:如果启动emulator时出现error=13时,一般时emulator的权限没有,可能时你下载的适合,压缩包放在一个只有root用户才可操作的目录下,该压缩包一般会加锁,如果直接解压,可能里没的一些文件或可执行文件不能运行。
所以在解压之前,先对该压缩包进行授权:
sudo chmod 777 XXX(具体的压缩包),然后解压。
或者安全起见,在解压后对该解压后的文件夹中所有的文件进行授权:sudo chmod 777 *

你可能感兴趣的:(ProGuard)