在添加依赖项实施' com之后,我在依赖实施' com.android.support:appcompat-v7:27.1.1' 时遇到错误.google.android.gms:播放服务-位置:15.0.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支持库版本(或者特别是低于targetSdkVersion的版本)进行编译
我想使用" 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级别的正确版本的dependecies。
答案 0 :(得分: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支持库版本进行编译 最新版本(或特别是低于您的版本的版本 targetSdkVersion)
您必须使用较低版本覆盖每个库,使用较高版本,例如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'
你重复这个,直到警告发生
答案 1 :(得分:0)
这是因为依赖项中的版本不匹配。 将鼠标光标移到显示错误的那一行,并检查将在那里弹出的预期版本。 更改为推荐版本并重建项目。