facebook twitter hatena line email

「Unity/Firebase/Realtimedatabase/インストール」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「 ==Realtimedatabaseのインストール== FirebaseDatabase.unitypackageをAssets/Importからインストールする https://firebase.google.com/download/unity?hl=ja...」)
 
(相違点なし)

2021年9月19日 (日) 10:50時点における最新版

Realtimedatabaseのインストール

FirebaseDatabase.unitypackageをAssets/Importからインストールする

https://firebase.google.com/download/unity?hl=ja

料金課金周り

Gcp/Firebase/RealtimeDatabase [ショートカット]

ルール

以下のようなルールになってると、更新できないので、test時は修正後のように 修正前

{
  "rules": {
    ".read": false,
    ".write": false
  }
}

修正後

{
  "rules": {
    ".read": true,
    ".write": true
  }
}