2017-07-09 78 views
0

我正在使用Android Studio,並決定將recyclerView添加到build.gradle。但之後添加它和同步gradle這個我得到這個錯誤:gradle無法正常工作

enter image description here

Executing tasks: [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies] 

連我自己重建項目但這項任務還我得到了同樣的錯誤。對於其他方式,我做了無效的緩存/重新啓動但它沒有工作仍存在我的問題。 我關閉即時運行但我得到同樣的錯誤。 我刪除.gradle文件夾在我的用戶,仍然有這個錯誤! 我怎麼能通過這個問題?

我的build.gradle:

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 26 
buildToolsVersion "26.0.0" 
defaultConfig { 
    applicationId "com.example.sayres.mychat" 
    minSdkVersion 15 
    targetSdkVersion 26 
    versionCode 1 
    versionName "1.0" 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 

dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
androidTestCompile('com.android.support.test.espresso:espresso- core:2.2.2', { 
    exclude group: 'com.android.support', module: 'support-annotations' 
}) 
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.0.2') { 
    exclude module: 'support-v4' 
} 
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.0.3-SNAPSHOT') { 
    exclude module: 'support-v4' 
} 
compile 'com.android.support:appcompat-v7:26.+' 
compile 'com.android.support.constraint:constraint-layout:1.0.2' 
testCompile 'junit:junit:4.12' 
} 

編輯:

Error: Some file crunching failed, see logs for details 

:應用:mergeDebugResources失敗

失敗:構建失敗

在gradle這個控制檯apeare這些線路

除了例外。

  • 出了什麼問題: 執行失敗的任務 ':應用程序:mergeDebugResources'。

    Error: Some file crunching failed, see logs for details

  • 嘗試: 與--stacktrace選項獲取堆棧跟蹤運行。使用--info或--debug選項運行以獲取更多日誌輸出。

    構建失敗

總時間:3.358秒

,這是我的日誌:enter link description here

我刪除構建文件夾,但我得到了同樣的錯誤。在這些文件夾中沒有PNG圖像。

+0

向你添加gradle問題。 –

+0

您發佈的帖子不是錯誤。 – Henry

+0

@亨利我添加圖片 –

回答

1

試試這個的gradle中,請確保您清理項目:

android { 
aaptOptions { 
      cruncherEnabled = false 
     } 
} 

希望這有助於。

+0

我添加,但我得到同樣的錯誤。 –

+0

不要複製android標籤只需複製aaptOptions並將其粘貼到android標籤中。 –

+0

我知道了,我只是複製aaptOptions。 –