将 com.google.gms:google-services:4.3.10 添加为项目 build.gradle 文件的类路径后下载时出现问题
Posted
技术标签:
【中文标题】将 com.google.gms:google-services:4.3.10 添加为项目 build.gradle 文件的类路径后下载时出现问题【英文标题】:Problem downloading com.google.gms:google-services:4.3.10 after adding it as a classpath to the project build.gradle file 【发布时间】:2021-12-04 14:37:06 【问题描述】:在尝试将我的应用连接到 Firebase 后,我开始收到此错误。
这是我在 gradle build 后得到的错误信息
无法获取“https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.3.10/google-services-4.3.10.pom”。从服务器收到状态码 405:不允许方法
项目 build.gradle 文件内容
buildscript
repositories
google()
jcenter()
mavenCentral()
dependencies
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
allprojects
repositories
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
task clean(type: Delete)
delete rootProject.buildDir
app/build.gradle 文件内容
plugins
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
//apply plugin: 'com.google.gms.google-services'
android
compileSdk 31
defaultConfig
applicationId "com.daniel_sogbey.marmap"
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
kotlinOptions
jvmTarget = '1.8'
buildToolsVersion '31.0.0'
dependencies
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation platform('com.google.firebase:firebase-bom:28.4.2')
implementation 'com.google.firebase:firebase-analytics-ktx'
googleServices disableVersionCheck = true
【问题讨论】:
将这两个 Gradle 文件添加到一个干净的项目中会导致在我的机器上没有任何错误的工作构建。该错误一定是由您的设置的其他原因引起的(可能是防火墙?)。 好的,谢谢,我会检查的 非常感谢,这个错误是由windows防火墙引起的。非常感谢 很高兴听到!我再次发布它作为答案,以便将来对其他人有所帮助。 非常感谢。堆了大约三天 【参考方案1】:您的 Gradle 文件看起来不错,但您的系统似乎无法联系 Google 存储库。
确保您没有运行阻止访问的防火墙。
您只能取消阻止处于活动状态的防火墙,而保留不活动的防火墙 如果你在 Windows 机器上,它仍然在运行。
【讨论】:
【参考方案2】:此错误消息完全是伪造的:google-services-4.3.10.pom
...
删除这个无用的指令,以停止隐藏实际问题:
googleServices disableVersionCheck = true
【讨论】:
它并没有解决错误。我仍然遇到同样的错误 这两天我一直在纠结这个以上是关于将 com.google.gms:google-services:4.3.10 添加为项目 build.gradle 文件的类路径后下载时出现问题的主要内容,如果未能解决你的问题,请参考以下文章
Javascript 将正则表达式 \\n 替换为 \n,将 \\t 替换为 \t,将 \\r 替换为 \r 等等