当前位置:   article > 正文

Android Studio打包Signed APK 碰到的一个Error_generate signed apk: errors while building apk. yo

generate signed apk: errors while building apk. you can find the errors in t

之前一直用ADT打包Singed APK。后来改用Android Studio开发并打包,debug版本运行都没有问题,但是在

Build->Generate Signed APK时却碰到了一个Error:

  1. Error:Execution failed for task ':app:packageRelease'.
  2. > Unable to compute hash of G:\coding\XXXXXAPP\app\build\intermediates\classes-proguard\release\classes.jar
导致无法生成app-release.apk。

网上类似的问题也有,比如:

http://stackoverflow.com/questions/30934729/cant-generate-signed-apk-from-android-studio-execution-failed-for-task-packa


看上去应该也是碰到了同样的问题,试了一下里面的那些解决方案,发现都不行,但帖子下面的回答提到要查看一下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)

包括解决方案。所以大家伙在碰到问题时,可以多看看提示,里面或许就有答案。


仅记录一下这个问题的解决方案。给碰到同样问题的同学们一点提示。





声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/420064
推荐阅读
相关标签
  

闽ICP备14008679号