將 Firebase 新增到你的 Android 專案中
這裡是建立 Firebase 專案並將其與 Android 應用程式連線所需的步驟。
將 Firebase 新增到你的應用
-
在 Firebase 控制檯中建立 Firebase 專案,然後單擊“ 建立新專案” 。
-
點選**新增 Firebase 到你的 Android 應用,**然後按照設定步驟操作。
-
出現提示時,輸入應用程式的包名稱。
輸入你的應用正在使用的包名稱非常重要; 只有在將應用程式新增到 Firebase 專案時才能設定此項。 -
最後,你將下載
google-services.json
檔案。你可以隨時再次下載此檔案。 (此檔案位於 Firebase 控制檯中的專案設定下)。 -
切換 android studio 檢視到 Project 並貼上 app 資料夾下的 google-service.json 檔案
下一步是新增 SDK 以在專案中整合 Firebase 庫。
新增 SDK
要將 Firebase 庫整合到你自己的專案中,你需要執行一些基本任務來準備 Android Studio 專案。你可能已將此操作作為嚮應用新增 Firebase 的一部分。
- 將規則新增到根級
build.gradle
檔案,以包含 google-services 外掛 :
buildscript {
// ...
dependencies {
// ...
classpath 'com.google.gms:google-services:3.1.1'
}
}
然後,在你的模組 Gradle 檔案(通常是 app/build.gradle
)中,在檔案底部新增 apply plugin 行以啟用 Gradle 外掛:
apply plugin: 'com.android.application'
android {
// ...
}
dependencies {
// ...
compile 'com.google.firebase:firebase-core:9.4.0'//THIS IS FOR ANALYTICS
compile "com.google.firebase:firebase-database:11.0.2"
}
// BELOW STATEMENT MUST BE WRITTEN IN BOTTOM
apply plugin: 'com.google.gms.google-services'
筆記:
-
沒有身份驗證就無法讀取/寫入資料。如果你想要它沒有身份驗證。更改 Database firebase 控制檯中的規則。
{
rules
:{“。read”:true,“。write”:true}} -
在 Manifest 中新增 Internet 許可權
-
升級 Google Play 服務和 Google 資訊庫