我正在尝试连接Android工作室中的firebase,我有r [![在此处输入图像说明] [1]] [1] ed行,不知道为什么会这样请帮助
实施例。
Firebase url;
然后火柱变红了。
我在youtube的帮助下编写了这个程序,所以没有错误或错误 你也可以检查这个图像 Red lines in Android Studio with Firebase
答案 0 :(得分:0)
您需要执行以下步骤,以便为项目提供Firebase类:
1)转到firebase控制台并通过添加包名称创建一个新项目并从中获取google.json
文件。在app文件夹中粘贴此文件。
2)转到build.gradle(项目级别)并添加此
buildscript {
// ...
dependencies {
// ...existing classpaths
classpath 'com.google.gms:google-services:3.1.0' // google-services plugin
}
}
allprojects {
// ...
repositories {
// ...
maven {
url "https://maven.google.com" // Google's Maven repository
}
}
}
并在build.gradle(app)中添加
apply plugin: 'com.android.application'
android {
// ...
}
dependencies {
// ...
compile 'com.google.firebase:firebase-core:11.4.0'
// Getting a "Could not find" error? Make sure you have
// the latest Google Repository in the Android SDK manager
}
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
然后尝试在项目中使用firebase类。
链接:firbase开发者控制台获取google.json文件firebase
链接:firebase设置指南how to use firebase
希望这会对你有所帮助。