// compile 'com.Google.androID.gms:play-services:9.2.0'compile 'com.Google.androID.gms:play-services-maps:9.2.0'compile 'com.Google.androID.gms:play-services-analytics:9.2.0'compile 'com.Google.androID.gms:play-services-gcm:9.2.0'compile 'com.Google.androID.gms:play-services-location:9.2.0'
我遇到的问题是,现在的进口如下:
import com.Google.androID.gms.location.places.Place;import com.Google.androID.gms.location.places.autocompleteFilter;import com.Google.androID.gms.location.places.autocompletePrediction;import com.Google.androID.gms.location.places.Place;import com.Google.androID.gms.location.places.PlaceBuffer;import com.Google.androID.gms.location.places.Places;
不能解决,尽管在他们的文档中,它表明位置服务也应该提供地方功能.
有人可以帮我解决这个问题吗?谢谢.
解决方法 根据@Selvin的评论,我设法找到我的问题的解决方案.看来,在9.x.x版本上,Google Play Services API的地方资讯已从Play-services位置转移到Play-services地方.
因此,现在我对Google Play Services API有以下依赖关系:
// compile 'com.Google.androID.gms:play-services:9.2.0'compile 'com.Google.androID.gms:play-services-maps:9.2.0'compile 'com.Google.androID.gms:play-services-analytics:9.2.0'compile 'com.Google.androID.gms:play-services-gcm:9.2.0'compile 'com.Google.androID.gms:play-services-location:9.2.0'compile 'com.Google.androID.gms:play-services-places:9.2.0'总结
以上是内存溢出为你收集整理的android – 选择性Google Play Services API未找到类全部内容,希望文章能够帮你解决android – 选择性Google Play Services API未找到类所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)