Skip to content

agamkoradiya/Ex-warranty

Repository files navigation

Ex-warranty

demo

How to Connect ?

  1. Connect your project to firebase
  2. Add SHA certificate fingerprints into your firebase

Storage rules :

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth != null;
    }
  }
}

Realtime DB rules :

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