我试图在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资源所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)