使用android-resource-remover优化资源使用率和lint-result.xml如果导出

 
按照上面教程中。下载了 get-pip.py.后一运行出现这个问题
ascii codec can't decode byte 0xe8 in posit
 
解决方法:
像图片那样加入下面三句话
import sys
reload(sys)
sys.setdefaultencoding('gbk')
 
重点在于
 
 
至于lint-result.xml是怎么来呢??
我个人比较笨和懒。还是借助Android studio导出来。
 
具体导出文章在这个靓仔的博客:http://www.th7.cn/Program/Android/201411/319940.shtml
 
 
原文地址:https://www.cnblogs.com/shortboy/p/4578845.html