Eclipse混淆文件导入Android Studio Gradle编译报input jar file is specified twice

Eclipse项目中的混淆配置文件 复制到AS中 在混淆的过程中提示如下错误
 
 
Error:Execution failed for task ':app:proguardDemoRelease'.
> java.io.IOException: The same input jar [D:Usersworkspace_studioTest5applibsfastjson.jar] is specified twice. 

解决方案:

删除  -libraryjars libs/***.jar from your proguard-rules.pro file.

原因是build.gradle文件配置了

dependencies {     compile fileTree(include: '*.jar', dir: 'libs')

}

里面已经添加过jar包,混淆文件proguard-rules.pro里面又加了句-libraryjars libs/***.jar,将-libraryjars libs/***.jar 前面用#号注释或者直接删掉即可。

原文地址:https://www.cnblogs.com/dongweiq/p/4910680.html