我读了很多关于这个主题的帖子,但没有人帮助过我。 我正在使用Android Studio并遵循此guide
这是项目的格斗:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
这是app gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.xyv.appname"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:design:25.0.1'
testCompile 'junit:junit:4.12'
compile 'com.google.firebase:firebase-core:10.0.1'
}
apply plugin: 'com.google.gms.google-services'
在这里,您可以看到我在我的应用中添加了google-services.json的位置:
这些是我的SDK工具:
有人理解我的错误是什么吗?
提前谢谢
答案 0 :(得分:0)
您可能需要添加
compile 'com.google.android.gms:play-services:9.6.1'
在你的app build.gradle中也是。参考:Upgrade to Google Play Services:9.0.0 Error Failed to resolve: com.google.android.gms:play-services-measurement:9.0.0
如果您最近将版本提升到3.0.0,则应该仔细检查您是否已在Android SDK管理器中的计算机上安装了正确的版本。
答案 1 :(得分:0)
答案 2 :(得分:0)
我通过将android studio更新为2.3 beta 2来解决我的问题 我刚刚更新了一个安卓工作室,一切都很糟糕