我正面临着自由的问题
的问题implementation 'com.android.support:appcompat-v7:27.1.1'
所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本27.1.1,25.2.0。示例包括com.android.support:animated-vector-drawable:27.1.1和com.android.support:support-media-compat:25.2.0 less ...(Ctrl + F1) 有些库或工具和库的组合不兼容,或者可能导致错误。一个这样的不兼容性是使用不是最新版本的Android支持库版本(或者特别是低于targetSdkVersion的版本)进行编译。
我的gradle文件包含以下代码。
我的Android Studio在Android Studio 3.1上运行
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "greetgalleryfree.binarycrust.com"
minSdkVersion 18
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-database:11.8.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
将它添加到build.gradle(Module:app)的最后:
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '27.1.1'
}
}
}
}
请务必更换' 27.1.1'对于要用于所有依赖项的android支持库的版本,它不应低于你的complile sdk版本
比重新同步gradle