gpt4 book ai didi

android - 无法解析依赖 firebase 和 google play 服务

转载 作者:行者123 更新时间:2023-11-30 05:10:13 25 4
gpt4 key购买 nike

我正在尝试将我的 android 项目连接到 firebase。它在启动时也能正常工作。我不知道突然之间发生了什么,我得到了一系列 Unresolved 依赖关系。

我已经完成了我在网上找到的几乎所有步骤。就像禁用离线工作一样,Invalidate chache/restart。即使在创建新项目时,我也面临同样的问题。早些时候这一切都没有发生。

我的应用程序 gradle 代码是:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'

}
}

allprojects {
repositories {
google()
maven { url "http://jcenter.bintray.com"}
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

模块的build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.aabsys.metasensing"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "2.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'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-messaging:17.3.0'
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

}

apply plugin: 'com.google.gms.google-services'

提前致谢。 Please find image

最佳答案

尝试在您的代码中添加以下依赖项:-

implementation 'com.google.android.gms:play-services:12.0.1'

如果仍然不能解决您的问题,请尝试更新 Google Play 服务和 Google 存储库。 enter image description here

关于android - 无法解析依赖 firebase 和 google play 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53865824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com