此时我已经为Android Studio 2.2下载了最新的存储库。并希望将谷歌分析更新到最新版本。 所以,我可以选择升级播放服务分析:9.6.0但我与gms google-services版本存在冲突,我目前在3.0.0上有它,因为我还没有找到较新的版本。
所以这就是我的App gradle依赖项中的内容:
compile 'com.google.android.gms:play-services-analytics:9.6.0'
这就是我在项目依赖项中所拥有的:
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.google.gms:google-services:3.0.0'
以下是我收到的构建错误消息:
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 9.0.0.
我能做到这一点的唯一方法是使用play-services-analytics:9.0.0,所以我得到一个弃用的警告。
目前是否有办法解决此问题,或者我必须等到下一版本的google-services?