Firebase Authentication component best Security Rules

Description

Firebase Authentication component Security Rules will work in the same way on all App Inventor distributions,it is being specially experimented on Kodular MIT.

Firebase rules-

{
“rules”: {
“Users”: {
“$uid”: {
“.read”: “$uid === auth.uid”,
“.write”: “$uid === auth.uid”
}
},
“Messaging” : {
“.read” : “auth.uid != null”,
“.write” : “auth.uid != null”
}
}
}



solve link - 'Firebase Authentication component' best Security Rules

2 Likes