尝试将Firebase连接到项目并收到此错误
Error:Execution failed for task ':app:processDebugGoogleServices'.
找不到软件包名称"com.google.firebase.udacity.friendlychat"的匹配客户端
我的毕业项目
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
格拉德尔应用程序
apply plugin: 'com.android.application'
repositories {
mavenLocal()
flatDir {
dirs 'libs'
}
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.google.firebase.udacity.friendlychat"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.github.bumptech.glide:glide:3.6.1'
}
apply plugin: 'com.google.gms.google-services'
我在APP文件夹中添加了google-services.json。就像 4 个月前一样,一切运作良好。但现在没有了。
附言我已经从第一页谷歌尝试了一些解决方案 ->堆栈=没有结果。如果你想做-1,请记下,我会提高我使用堆栈溢出的技能。
谢谢
再次下载google-services.json
。 这可能会以某种方式改变。
您正在尝试连接到 Firebase,但您根本没有 Firebase dependencies
。如果您想使用我在标签中看到的Firebase Realtime Database
和Firebase Cloud Messaging
,请在您的build.gradle
文件中添加以下代码行:
com.google.firebase:firebase-database:11.8.0
com.google.firebase:firebase-messaging:11.8.0
如果您需要其他服务,请参阅如何将 Firebase 添加到您的 Android 项目中。
不要忘记重新下载google-services.json
文件。