【发布时间】:2019-06-11 10:00:10
【问题描述】:
在 Firebase 身份验证(助手)中使用向您的应用添加 Firebase 身份验证时出错。
同步选项卡中的错误显示为:
无法获取“https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.0.1/google-services-4.0.1.pom”。从服务器收到状态码 405:不允许方法 启用 Gradle“离线模式”并同步项目
我的 Android Studio 详细信息是:
- Android Studio 3.2.1 版
- Gradle 版本:4.6
build.gradle(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/android/android-tools' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
build.gradle(应用)
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.nsc.suyog.myotp1"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
testImplementation 'junit:junit:4.12'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
}
【问题讨论】:
-
您可以发布您的 build.gradle 文件(项目和应用程序)吗?
-
是的。这个错误的原因是什么?
-
您是否尝试更新所有版本,例如:classpath 'com.android.tools.build:gradle:3.3.0' classpath 'com.google.gms:google-services:4.2.0'
-
如何更新它们?
-
您的 Firebase 身份验证版本很奇怪,不是吗?试试最新的
16.1.0。
标签: android firebase android-studio gradle firebase-authentication