The same input jar xxx is specified twice.

从Eclipse导入工程到Android Studio,打包出现以下错误

The same input jar xxx is specified twice._第1张图片


解决方案:删除proguard配置文件中的jar包引用

The same input jar xxx is specified twice._第2张图片


说明:

-libraryjars:引用jar包,相当于类文件中的import,当你需要在proguard脚本中,配置jar包相关的混淆时,就得通过 -liraryjars引入对应jar包

在使用Eclipse+ADT时,就需要使用-libraryjars将所引用的jar包添加到打包脚本。

但在使用Android Studio开发时,则不需要,因为AS默认已经将lib目录中的jar都添加到打包脚本中,所以不需要再次手动添加,否则就会出现"java.io.IOException: The same input jar xxx is specified twice."的错误

你可能感兴趣的:(The same input jar xxx is specified twice.)