2016-05-29 2 views
0

タスクの実行に失敗しました:app-merge debug resources。一部のファイルの処理が失敗しました。私はいくつかの問題を抱えています...いくつかのエラーメッセージを表示しています

これは私が

dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.0' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.2.1' 
    compile 'com.android.support:design:23.0.1' 


} 
+0

あなたは 'APPCOMPAT-v7'と' design'の同じバージョンを使用していますか? – Sufian

答えて

0

あなたの問題を使用していた

これらを示すメッセージであるためappcompat-v7designの異なるバージョンのインポートのようです。

更新などのバージョン23.2.1へdesignのGradleのインポート、:

compile 'com.android.support:design:23.2.1' 
関連する問題