1. 程式人生 > >androidStudio com.android.ide.common.process.ProcessException解決方法

androidStudio com.android.ide.common.process.ProcessException解決方法

第一種情況

Error:(283) Attribute "color" has already been defined

Error:Execution failed for task ':mygirlFlash:processDebugResources'.

> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/wxj/adt-bundle-linux-x86_64-20140702/sdk/build-tools/23.0.3/aapt'' finished with non-zero exit value 1

出現這個錯誤,會定位到系統的一個values.xml檔案中,錯誤中提示說"color"有多個地方被定義了,我的專案中解決辦法是把build.gradle下的

compile 'com.android.support:appcompat-v7:23.3.0'給註釋了
還有一個緊急的解決辦法就是把上邊的依賴工程去掉之後,再加上一個v4的jar包(這個只能暫時解決)
另外提供一個新的解決思路,這些相容包最好都統一併且版本用比較新的

最終找到問題的根本,就是專案當中的attr.xml中已經定義了color這個名稱,重新命名就好了

  (程式設計師出現bug一定不要煩躁,可以轉移注意力,然後心情平靜了再返回解決bug)

第二種情況

Error:Execution failed for task ':juqiproject:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/wuxiaojun/adt-bundle-linux-x86_64-20140702/sdk/build-tools/24.0.2/aapt'' finished with non-zero exit value 1

上面的Log日誌如下

/home/XXX/AndroidStudioProjects/XRecyclerView-master/juqiproject/build/intermediates/manifests/full/debug/AndroidManifest.xml
Error:(13, 23) No resource found that matches the given name (at 'icon' with value '@mipmap/ic_launcher').

我明明已經存在這個ic_launcher但是老是報錯,後來找到問題是因為在我們的module中的gradle檔案中存在這樣一段程式碼

sourceSets {
        main {
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
            jniLibs.srcDirs = ['libs']
        }
        androidTest.setRoot('tests')
    }

只要把上面的
 //        java.srcDirs = ['src']
 //        resources.srcDirs = ['src']
 //       aidl.srcDirs = ['src']
 //       renderscript.srcDirs = ['src']
 //       res.srcDirs = ['res']
註釋掉就好了!