Android studio打包中遇到的问题
Please correct the above warnings first.
解决方法:
在proguard-rules.pro混淆文件中加入-ignorewarnings
Warning:Exception while processing task java.io.IOException: The same input jar […….jar] is specified twice.
解决方法如下:
在proguard-rules.pro混淆文件中所有的-libraryjars 前插入 # 成 #-libraryjars xxxx.jar
原因是build.gradle文件配置了
dependencies {
compile fileTree(include: '*.jar', dir: 'libs')
}
里面已经添加过jar包,混淆文件proguard-rules.pro里面又加了句-libraryjars libs/.jar,将-libraryjars libs/.jar 前面用#号注释或者直接删掉即可。
网友评论