赞
踩
之前一直用ADT打包Singed APK。后来改用Android Studio开发并打包,debug版本运行都没有问题,但是在
Build->Generate Signed APK时却碰到了一个Error:
- Error:Execution failed for task ':app:packageRelease'.
- > Unable to compute hash of G:\coding\XXXXXAPP\app\build\intermediates\classes-proguard\release\classes.jar
导致无法生成app-release.apk。
网上类似的问题也有,比如:
看上去应该也是碰到了同样的问题,试了一下里面的那些解决方案,发现都不行,但帖子下面的回答提到要查看一下proguard warning,
因为error之前,编译的时候前面肯定有warning. 翻了一下,果然发现很多warning.
是说左边那个库引用的org.apache.http.*这些class都无法找到。
OK,发现问题原因了,那么接下来只要在proguard-rules.pro加下这个库的dontwarn即可。
-dontwarn org.apache.http.**
再重新Build->Generate Signed,就可以生成app-release.apk.
其实原因可以在warning下面找到:
Warning:there were 42 unresolved references to classes or interfaces.
You may need to add missing library jars or update their versions.
If your code works fine without the missing classes, you can suppress
the warnings with '-dontwarn' options.
(http://proguard.sourceforge.net/manual/troubleshooting.html#unresolvedclass)
包括解决方案。所以大家伙在碰到问题时,可以多看看提示,里面或许就有答案。
仅记录一下这个问题的解决方案。给碰到同样问题的同学们一点提示。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。