Read external storage permission android do not allow

can you tell me if i’m doing well

Welcome
Please remember: you can search this community, see these threads

https://community.kodular.io/search?context=topic&context_id=292967&q=FirebaseError%20permission%20denied&skip_context=true

Taifun

Hello @Hit_Du_Moment,

I think you dont have authententication set up and if you do, you probably have wrong firebase rules set up. For prototyping i would reccomend setting your rules to the following:

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

This will probable make the error go away if you are using realtime databse,

However!
You will need to set up proper rules and set up authentication when actually using this app, since this way of connecting to your database is not secure and anyone could connect to it.

Companion notes

Firebase authentication does not work in companion.

Further questions
Would you mind giving me information about what exactly of firebase you are using? Can you send a screenshot of the blocks you are using?

Your rules you gave me are for test mode, but now I want that only users can read and write in their own node with its uid, I make another publication on the forum with more images

The posts seem to have been messed up a bit. would you mind sharing the pictures here again?

Hi,

To use firebase rules you need to follow this guides

or