添加 google plya-services 时,所有 com.android.support 库必须使用完全相同的版本规范
Posted
技术标签:
【中文标题】添加 google plya-services 时,所有 com.android.support 库必须使用完全相同的版本规范【英文标题】:all com.android.support libraries must use the exact same version specification when adding google plya-services 【发布时间】:2018-11-11 22:05:36 【问题描述】:添加google play-services
库以便我可以添加地图时出现此错误:
所有 com.android.support 库必须使用完全相同的版本规范
我的依赖如下:
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
版本,但错误仍然存在。
【问题讨论】:
错误是什么?据我所知,您共享了依赖项,但没有共享错误消息。 所有 com.android.support 库必须使用完全相同的版本规范 【参考方案1】:使用常量版本,去掉+
:
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"
【讨论】:
无法解析:com.google.android.gms:play-services:15.0.1 @Halgo 您到底想使用 API 的哪一部分? Google 地图、Google 地方信息等? @Halgo 然后删除implementation 'com.google.android.gms:play-services:15.0.1'
。并添加这两个:implementation 'com.google.android.gms:play-services-maps:15.0.1'
和 implementation 'com.google.android.gms:play-services-places:15.0.1'
@Halgo 很高兴我能帮上忙!祝你好运!
@ElezabethMathew 太棒了!祝你好运:)以上是关于添加 google plya-services 时,所有 com.android.support 库必须使用完全相同的版本规范的主要内容,如果未能解决你的问题,请参考以下文章
如何在从Google Site添加时设置对Google云端硬盘文件/文件夹的权限
Google Calendar API 出错 - 添加日历事件时需要 401 登录