zoukankan      html  css  js  c++  java
  • 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 前面用#号注释或者直接删掉即可。

  • 相关阅读:
    POJ1045 Bode Plot
    POJ1044 Date bugs
    POJ1043 What's In A Name?
    POJ1042 Gone Fishing
    POJ1041 John's trip
    POJ1040 Transportation
    POJ1039 Pipe
    background-size属性
    一些CSS的备忘
    only-child选择器
  • 原文地址:https://www.cnblogs.com/dongweiq/p/4910680.html
Copyright © 2011-2022 走看看