由于不推荐使用Places API
,因此在build.gradle
中添加了以下新的Android Places SDK
依赖项后出现错误。
错误:
Android依赖项“ com.google.android.gms:play-services-base”具有 编译(16.0.1)和运行时(16.1.0)的不同版本 类路径。您应该通过以下方式手动设置相同的版本 DependencyResolution
我还将项目级别3.2.1
的google services版本从4.2.0
更新为build.gradle
dependencies {
...
classpath "com.google.gms:google-services:4.2.0"
...
}
在应用程序级别build.gradle
中。我添加了新的Places API
依赖关系并评论了旧的依赖关系,我还使用了其他服务,例如项目中的位置和地图,请参见
dependencies {
...
implementation "com.google.android.libraries.places:places:1.0.0" // new
// implementation "com.google.android.gms:play-services-places:16.0.0" //deprecated
implementation "com.google.android.gms:play-services-location:16.0.0"
implementation "com.google.android.gms:play-services-gcm:16.0.0"
implementation "com.google.android.gms:play-services-maps:16.0.0"
...
}
答案 0 :(得分:1)
除了使用依赖关系解析之外,还可以强制Gradle打包特定版本:
implementation("com.google.android.gms:play-services-base:16.1.0") {
force = true
}
答案 1 :(得分:0)
在回答了很多问题之后,this帮助了我!
在项目级别resolutionStrategy
上设置build.gradle
allprojects {
...
configurations.all {
resolutionStrategy.force "com.google.android.gms:play-services-base:16.1.0"
}
...
}