アンドロイドスタジオをCanary 6に更新するまでは問題ありませんでした。 :com.android.build.gradle.tasks.MergeResources $ FileGenerationWorkAction
を実行しながら
障害が発生し、このエラーが私の
vectors.xml
に私を導く [それらのすべては、このエラーが発生しました]。私の現在のアプリレベルbuild.gradle:私は
com.android.support
ライブラリをダウンロードしようとしたときapply plugin: 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.2" useLibrary 'org.apache.http.legacy' defaultConfig { applicationId "example.project" minSdkVersion 15 targetSdkVersion 25 versionCode 42 versionName "1.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" //multiDexEnabled = true } buildTypes { buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } } dependencies { compile 'com.android.support:appcompat-v7:25.3.1'//<-- can't update to new one compile 'com.android.support:design:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:support-v4:25.3.1' compile 'com.google.code.gson:gson:2.7' compile 'com.android.support:support-v13:25.3.1' compile 'com.android.support:palette-v7:25.3.1' compile 'de.hdodenhof:circleimageview:2.1.0' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.mcxiaoke.volley:library-aar:1.0.0' compile 'com.squareup.okhttp3:okhttp:3.0.1' compile 'com.android.support:multidex:1.0.1' testCompile 'junit:junit:4.12' }
また、IDEは、ちょうどSDKを検索し、ただ何もしません。
クリーンと再構築:私が試みられてきた何
。
キャッシュを無効にします。
、私はアンドロイドスタジオ2.3.3に手を加えたり、2.3番目の依存関係であなたのクラスパスを変更するようにアドバイスをdefaultConfigにおける真useSupportLibrary =は、それが仕事の罰金です.3 – Mohad12211
カナリー4は、特にKotlin + ConstraintLayoutを使用する場合、5/6よりも安定しています。 –