我正在使用此版本implementation com.google.android.gms:play-services:10.2.0
,但是我需要使用此com.google.android.gms:play-services-location:15.0.1
或更高版本。
每次构建时,它都会说所有依赖项都应高于或低于 14.0.0 。但是没有比10.2.0更高的播放服务版本了(据我所知)。
我有什么办法可以简单地删除此Google Play服务依赖项而不会出现任何错误。因为每次我删除并构建它时都会出现此错误(请参见所附图片)。
答案 0 :(得分:1)
在app.gradle中:
dependencies {
implementation 'com.google.android.gms:play-services-location:16.0.0'
}
apply plugin: 'com.google.gms.google-services'
在项目gradle中:
dependencies {
classpath 'com.google.gms:google-services:4.2.0'
}