17
Androidの依存関係のコンパイルとランタイムのバージョンが異なります
Android StudioをCanary 3からCanary 4に更新した後、ビルド時に次のエラーがスローされます。 Androidの依存関係「com.android.support:support-support-v4」には、コンパイル(25.2.0)とランタイム(26.0.0-beta2)クラスパスのバージョンが異なります。DependencyResolutionを使用して手動で同じバージョンを設定する必要があります。 私はプロジェクト全体で完全な検索を実行しましたが、バージョン25.1.0は使用されていません。 App-build.gradle android { compileSdkVersion 26 buildToolsVersion '26.0.0' defaultConfig { applicationId "com.xxx.xxxx" minSdkVersion 14 targetSdkVersion versionCode 1 versionName "1.0" multiDexEnabled true } buildTypes { debug { debuggable true } release { debuggable false minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } lintOptions { abortOnError false …