1. 程式人生 > >工作中遇到的問題總結

工作中遇到的問題總結

1、編譯專案時, 突然丟擲異常 INSTALL_FAILED_INVALID_APK: Split lib_slice_1_apk was defined multiple times。

解決方法:禁用InstantRun 修復該問題 。

ps: InstantRun在使用中出現問題比較多,我覺得還是禁用比較好。

2、out of memory increment xmx 。

3、Exception parsing classes Error converting bytecode to dex。

解決方法:在Gradle console 丟擲 class name (com/joysuch/sitedeploy/basic/BuildingFragment) does not match path (com/joysuch/sitedeploy/Basic/BuildingFragment.class)。這是由於InstantRun 時更改的包或者類找不到,直接禁用InstantRun 後, Run app即可通過。

4、匯入Eclipse專案:匯入Ecplise的專案 new —> import project。

5、配置Gradle時,出現了一個從未碰到的問題“Error:Conflict with dependency ‘
com.google.code.findbugs:jsr305’ ”。

解決方法:Module 的 build.gradle ,android {}節點下新增


  configurations.all {
       resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.2'
   }