找不到 com.google.gms:google-services:4.0.1 [重复]
Posted
技术标签:
【中文标题】找不到 com.google.gms:google-services:4.0.1 [重复]【英文标题】:Could not find com.google.gms:google-services:4.0.1 [duplicate] 【发布时间】:2019-05-11 06:19:58 【问题描述】:您好,我在 android 中启动了一个新项目,并按照谷歌文档中的说明导入了 firebase。 Android studio 3.0.1 中的一切都很完美。 现在我将我的 Android 工作室更新到 3.2.1。现在重建相同的代码并得到错误
找不到 com.google.gms:google-services:4.0.1
日志是:
Could not find com.google.gms:google-services:4.0.1.
Searched in the following locations:
file:/Applications/Android Studio.app/Contents/gradle/m2repository/com/google/gms/google-services/4.0.1/google-services-4.0.1.pom
file:/Applications/Android Studio.app/Contents/gradle/m2repository/com/google/gms/google-services/4.0.1/google-services-4.0.1.jar
https://jcenter.bintray.com/com/google/gms/google-services/4.0.1/google-services-4.0.1.pom
https://jcenter.bintray.com/com/google/gms/google-services/4.0.1/google-services-4.0.1.jar
https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.0.1/google-services-4.0.1.pom
https://dl.google.com/dl/android/maven2/com/google/gms/google-services/4.0.1/google-services-4.0.1.jar
Required by:
project :
我的项目级别 Gradle 是:
buildscript
repositories
jcenter()
google()
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
jcenter()
google()
task clean(type: Delete)
delete rootProject.buildDir
应用级 Gradle 是:
apply plugin: 'com.android.application'
android
compileSdkVersion 27
defaultConfig
applicationId "com.arafa.sms"
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.0'
implementation 'com.android.support:support-v4:27.1.0'
implementation 'com.android.support:animated-vector-drawable:27.1.0'
implementation 'com.android.support:support-media-compat:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.code.gson:gson:2.6.2'
implementation 'com.squareup.okhttp3:okhttp:3.3.1'
implementation 'com.google.firebase:firebase-core:16.0.1'
apply plugin: 'com.google.gms.google-services'
这里有什么问题!请帮帮我!
【问题讨论】:
对我来说同样的问题。可能与此处的类似问题有关github.com/google/ExoPlayer/issues/5225 issuetracker.google.com/issues/120759347 【参考方案1】:我也有同样的问题,Google repo 似乎缺少这种依赖关系。我检查了repository,gms 文件夹不包含任何已发布的版本。
因此,作为快速修复,我添加了另一个存储库,它拥有它:
repositories
maven url 'https://dl.bintray.com/android/android-tools'
编辑:因为这只是一个临时解决方案,我认为它是一种解决方法,所以我能够继续开发。稍后当 Google 存储库将包含依赖关系或我们知道他们将其移动到何处时,我将删除此依赖关系。
【讨论】:
有效 - 对我来说,它也找不到 com.google.firebase:firebase-plugins:1.1.5 了,必须添加这个 repo:maven url 'dl.bintray.com/firebase/gradle' ¯_(ツ)_/¯ @DavidSucharda 安全吗?!谷歌使用它吗? 这个com.android.tools.build:gradle:2.2.3
在google maven repo google()
@tibuurcio 实际上不是,它是一个非常旧的版本..
@Damiii 这是一种解决方法,因为 Google 自己的存储库出于某种原因没有所需的依赖项。我建议在 google 将其添加回来后将其删除,否则我们将知道他们将其移动到哪里。
现在已经修复了,大家可以把临时解决办法去掉:)【参考方案2】:
尝试将另一个 maven 存储库添加到您的项目 gradle 文件中。例如:
allprojects
repositories
google()
jcenter()
maven url "https://jitpack.io"
如果这不起作用,将 OneSignal gradle 插件添加到项目的 gradle 中可能会成功 (as suggested in this answer)。
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
【讨论】:
以上是关于找不到 com.google.gms:google-services:4.0.1 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
找不到 com.google.gms:google-services:4.0.1 [重复]
错误:找不到 com.google.gms:google-services:1.0。在 android studio 的 build.gradle 中添加谷歌服务插件时