所有 com.android.support 库在添加 google plya-services 时必须使用完全相同的版本规范
all com.android.support libraries must use the exact same version specification when adding google plya-services
添加 google play-services
库以便我可以添加地图时出现此错误:
all com.android.support libraries must use the exact same version specification
我的依赖如下:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.android.gms:play-services:+'
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'
implementation 'de.hdodenhof:circleimageview:2.1.0'
}
我尝试更改 android support
版本以及 android play services
版本,但错误仍然存在。
使用常量版本,去掉+
:
implementation 'com.google.android.gms:play-services:15.0.1'
并且也避免添加整个API,只选择你需要的,你可以找到它们here。例如,如果您知道您只需要 Google 地图,那么只需添加:
implementation 'com.google.android.gms:play-services-maps:15.0.1'
而不是像你那样整件事。
编辑:
将此添加到您的项目构建 gradle 文件(不是模块一):
repositories {
maven {
url "https://maven.google.com"
}
}
添加 google play-services
库以便我可以添加地图时出现此错误:
all com.android.support libraries must use the exact same version specification
我的依赖如下:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.android.gms:play-services:+'
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'
implementation 'de.hdodenhof:circleimageview:2.1.0'
}
我尝试更改 android support
版本以及 android play services
版本,但错误仍然存在。
使用常量版本,去掉+
:
implementation 'com.google.android.gms:play-services:15.0.1'
并且也避免添加整个API,只选择你需要的,你可以找到它们here。例如,如果您知道您只需要 Google 地图,那么只需添加:
implementation 'com.google.android.gms:play-services-maps:15.0.1'
而不是像你那样整件事。
编辑:
将此添加到您的项目构建 gradle 文件(不是模块一):
repositories {
maven {
url "https://maven.google.com"
}
}