最佳答案
在同步我的项目时,我遇到了多个“未能解决”的问题。它们都是消防站和游戏服务相关的。我确保它们都是一样的(11.2.0)。我也检查过了,两者的最新版本都是11.2.0。此外,所有其他类似问题的答案涉及更新谷歌播放服务和资源库在 SDK 管理器,但我的已经是最新的。
知道我为什么不能同步我的项目吗?
当前工作解决方案
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.google.firebase:firebase-plugins:1.0.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}