我已经看到这个问题,并按照重新同步项目和更新SDK
的方式回复。我正好在新项目开始时尝试使用firebase
设置身份验证,并且我收到以下错误
Android工作室是否只恨我?
错误:无法解决:com.google.firebase:firebase-core:11.0.0 Open 档案
显示 项目结构对话框 错误:错误:第(29)行无法解析:com.google.firebase:firebase-auth:11.0.0 Show in 档案
显示 项目结构对话框
答案 0 :(得分:9)
转到工具> Android> SDK Manager单击SDK Tools并更新以下内容:
答案 1 :(得分:3)
只需转到sdk经理并更新Google存储库。
答案 2 :(得分:1)
您只能点击AddAnalytics到您的应用 跟随 这https://firebase.google.com/docs/android/setup
答案 3 :(得分:1)
我可以使用10.0.0
来解决这个问题感谢大家的帮助
尼克
答案 4 :(得分:0)
适用于 android studio 4.1.2。
注意/classpath 'com.google.gms:google-services:4.3.5'
应用插件:'com.google.gms.google-services'
如果有帮助,请留下评论。
答案 5 :(得分:-1)
确保您的项目级build.gradle文件包含以下内容:
allprojects {
repositories {
jcenter()
mavenLocal()
maven { url 'https://maven.google.com' }
}
}
答案 6 :(得分:-1)
行顺序对于Gradle非常重要。
1) buildscript { ext.kotlin_version ='1.2.20'
repositories {
maven { url "https://maven.google.com" }
maven { url 'https://plugins.gradle.org/m2/'}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.0.0'//3.2.0
classpath 'com.google.firebase:firebase-plugins:1.0.4'
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.8.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
和
2)
dependencies {
compile project(':libraries')
compile fileTree(include: ['*.jar'], dir: 'libs')
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//--------------------------------- One Signal-------------------
//compile 'com.onesignal:OneSignal:[3.1.1, 3.3.99]'
compile 'com.google.android.gms:play-services-gcm:11.0.4'
compile 'com.google.android.gms:play-services-location:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-messaging:11.0.4'
//-------------------------------------------------------------
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:percent:26.0.0-alpha1'
compile 'com.android.support:design:26.0.0-alpha1'
compile 'com.android.support:support-v4:26.0.0-alpha1'
compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
compile 'com.android.support:cardview-v7:26.0.0-alpha1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
apply plugin: 'com.google.gms.google-services'
祝你好运