Google Play定位服务9.2.0缺少Google归档Android资源

Google Play定位服务9.2.0缺少Google归档Android资源,第1张

概述我试图在Android应用中将GooglePlay服务的依赖关系从9.0.2升级到9.2.0,即LocationsAPI:dependencies{...compile'com.google.android.gms:play-services-location:9.2.0'...}API从SDKManager下载:>GooglePlay服务,第31版>GoogleRepository,第29版但是,

我试图在Android应用中将Google Play服务的依赖关系从9.0.2升级到9.2.0,即Locations API:

dependencIEs {   ...   compile 'com.Google.androID.gms:play-services-location:9.2.0'   ...}

API从SDK Manager下载:

> Google Play服务,第31版
> Google Repository,第29版

但是,代码无法再编译,因为找不到可绘制资源,特别是@ drawable / powered_by_Google_light(Google的归因图片).

检查sdk_location / extras / Google / m2repository / com / Google / androID / gms / play-services-location / 9.2.0下的AAR,似乎缺少资源.实际上,AAR中的res文件夹是空的.但它存在于版本9.0.2中.

有没有人遇到过这个?我尝试从SDK Manager中多次重新安装存储库.

解决方法:

通过在Places API上添加依赖项解决了问题:

dependencIEs {   ...   compile 'com.Google.androID.gms:play-services-location:9.2.0'   compile 'com.Google.androID.gms:play-services-places:9.2.0'   ...}

在该版本之前,似乎隐式声明了Places依赖项.

还有关:Google Play Services 9.2.0 missing classes

总结

以上是内存溢出为你收集整理的Google Play定位服务9.2.0缺少Google归档Android资源全部内容,希望文章能够帮你解决Google Play定位服务9.2.0缺少Google归档Android资源所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1108390.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存