昨晚在我的项目中出现了一个错误,不知何故在构建之间。我没有改变任何东西,除了一些代码,它从工作到没有,这个错误 - 源代码与字节码不匹配。
这导致了一轮更新所有内容(gradle等)。现在发生了不同的错误。
错误是;
所有com.android.support库必须使用完全相同的版本规范。找到版本25.2.0,24.2.1。示例包括com.android.support:support-compat:25.2.0。
这是我的build.gradle的副本;
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '27.0.1'
defaultConfig {
applicationId "au.com.me.myproject"
minSdkVersion 24
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
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 'com.android.support:appcompat-v7:24.2.1'
//compile 'com.android.support:support-media-compat:24.2.1'
//compile 'com.android.support:support-v4:24.2.1'
//compile 'com.android.support:support-compat:24.2.1'
compile 'org.apache.commons:commons-collections4:4.1'
compile 'com.android.support.constraint:constraint-layout:1.0.1'
testCompile 'junit:junit:4.12'
compile 'com.google.firebase:firebase-appindexing:11.6.2'
compile 'org.greenrobot:eventbus:3.1.1'
}
我无法解决support-compat:25.2依赖性来自哪里。我做了一个干净的>重建。 知道如何解决这个问题吗?谢谢大家:))
更新
Gradle View显示com.google.firebase:firebase-appindexing:11.6.2依赖于com.google.android.gms:play-services-basement:11.6.2,后者又有一个com.android .support:support-v4:25.2.0依赖。 (假设我正确地读它)。