Android Studio Gradle編譯報input jar file is specified twice
原文地址:http://blog.csdn.net/X_i_a_o_H_a_i/article/details/41979983
Eclipse專案中的混淆配置檔案 複製到AS中 在混淆的過程中提示如下錯誤
Error:Execution failed for task ':app:proguardDemoRelease'.
> java.io.IOException: The same input jar [D:\Users\workspace_studio\Test5\app\libs\fastjson.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 前面用#號註釋或者直接刪掉即可。
相關文章
- 頁面報錯 No input file specified
- No input file specified.
- No input file specified 解決方法
- Android Studio 使用 Gradle 打包 JarAndroidGradleJAR
- no input file specified 三種解決方法
- 使用phpstudy出現No input file specifiedPHP
- 修改gradle屬性,加快Android studio編譯速度GradleAndroid編譯
- Android Studio 解決編譯報錯 Could not download aapt2-windows.jarAndroid編譯APTWindowsJAR
- 專案遷移 寶塔 No input file specified
- Web 伺服器顯示 no input file specifiedWeb伺服器
- 使用url()後出現No input file specified.
- 記:痛苦的排錯之” No input file specified.“
- Table is specified twice, both as a target for 'UPDATE' and as a separate source
- 2.2. 第一個應用,遇到 no input file specified
- No input file specified 出現的原因及解決方法
- apache PHP 隱藏 index.php 報錯 No input file specified. 解決辦法ApachePHPIndex
- Android將Jar放入libs目錄下編譯報錯AndroidJAR編譯
- Android Studio 編輯Build.gradle時很卡AndroidUIGradle
- Gradle For Android(四)Gradle 編譯中神祕的混淆GradleAndroid編譯
- PbootCMS 網站轉移後無法開啟報錯提示“No input file specified”怎麼辦boot網站
- Gradle編譯專案Druid找不到tools.jar和jconsole.jarGradle編譯UIJAR
- Nginx執行php,顯示“No input file specified. ”的處理方法NginxPHP
- Android Studio 編譯錯誤集錦Android編譯
- 已解決 phpstudy切換nts模式出現的No input file specifiedPHP模式
- 網站執行PHP出現No input file specified 的解決辦法網站PHP
- 解決 PbootCMS 網站轉移後無法開啟報錯提示“No input file specified”的問題boot網站
- 提高gradle編譯速度Gradle編譯
- 【Android】Android Studio啟動配置gradleAndroidGradle
- apache 與 Nginx 隱藏 index.php 報錯 No input file specified. 解決辦法 設定偽靜態ApacheNginxIndexPHP
- Android Studio使用離線GradleAndroidGradle
- Android studio gradle 打包 那些事AndroidGradle
- Android Studio打包apk,aar,jar包AndroidAPKJAR
- Maven 編譯使用 rt.jarMaven編譯JAR
- Android Studio中編譯除錯Launcher3Android編譯除錯
- Android Studio升級gradle版本之後編譯出現CreateProcess error=206異常解決AndroidGradle編譯Error
- opatch報錯:The oraInst.loc file specified is not validAI
- 在 apache 中重寫規則不生效的問題 [No input file specified.] 解決Apache
- Android Studio Gradle 常用配置詳解AndroidGradle