Skip to content

Instantly share code, notes, and snippets.

@tensor-programming
Created May 15, 2018 01:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tensor-programming/9a5a24874860cfa365b1049d094465d7 to your computer and use it in GitHub Desktop.
Save tensor-programming/9a5a24874860cfa365b1049d094465d7 to your computer and use it in GitHub Desktop.
Windows Keytool CMD:
keytool -list -v -alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore
Mac Linux Keytool CMD:
keytool -exportcert -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore
Firestore Rules:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if request.auth != null;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment