>添加依赖实现"com.google.android.gms:play-services-location:15.0.1"后,我在依赖项实现"com.android.support:appcompat-v7:27.1.1">上出现以下错误
所有 com.android.support 库必须使用完全相同的版本规范(混合版本可能会导致运行时崩溃(。找到版本 27.1.1、26.1.0。示例包括com.android.support:animated-vector-drawable:27.1.1和com.android.support:support-media-compat:26.1.0 less...(Ctrl+F1( 库或工具和库的某些组合不兼容,或者可能导致错误。其中一个不兼容是编译的Android支持库版本不是最新版本(特别是低于目标SdkVersion的版本(。
我想使用需要位置依赖性的"PlaceAutocompleteFragment"。我尝试使用以下方法添加位置依赖项:
文件>项目结构>依赖项> +>搜索位置
获得位置版本12.0.2,它仍然抛出上述错误。 我知道还有其他问题具有相同的错误,但我仍然无法找出错误的解决方案。
build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.manish.abc"
minSdkVersion 15
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(include: ['*.jar'], dir: 'libs')
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
另外,请让我知道如何找到适用于我正在使用的 api 级别的依赖项的正确版本。
更新:
在提示中,您有:
所有 com.android.support 库必须使用完全相同的版本 规范(混合版本可能会导致运行时崩溃(。发现 版本27.1.1、26.1.0。示例包括 com.android.support:animated-vector-drawable:27.1.1 和com.android.support:support-media-compat:26.1.0收起...(Ctrl+F1( 有一些库或工具和库的组合, 不兼容,或可能导致错误。其中一种不兼容是 使用不是 Android 支持库的版本进行编译 最新版本(特别是低于您的版本 目标SdkVersion(
您必须使用提示中显示的较低版本覆盖每个库,例如对于com.android.support:support-media-compat:26.1.0
(在提示中看到(
使用更高版本27.1.1而不是26.1.0添加'com.android.support:support-media-compat:27.1.1'
:
implementation 'com.android.support:support-media-compat:27.1.1'
你重复这个,直到警告消失
这是因为依赖项中的版本不匹配。 将鼠标光标移到显示错误的那一行上,然后检查将在那里弹出的预期版本。 更改为建议的版本并重新生成项目。