Installing Firebase Integration

Requirements

You need to have Firebase Unity SDK installed to install Save Game Pro Firebase integration:

Installation

Open Window > Save Game Pro > Settings window:

Save Game Pro - Window Menu

Go to Integrations section:

Save Game Pro - Window Menu

Now, Click Install button next to the Firebase title to install Save Game Pro Firebase integration

Setup Database Rules

In Firebase you need to set up the Database rules in order to save and load data, we have a ready-to-use database rules that works the best in most situations:

{
  "rules": {
    ".read": "auth != null",
    ".write": "auth != null"
  }
}

For more information check out Firebase Get Started with Database Rules article.