'how to allow all users to get download link from firebase_Storage

I am trying to allow all users to get download links of files in firebase_storage , but when I send request for a file I get permission denied

here is my firebase_Storage rules

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


Solution 1:[1]

I changed the "false" to "true" And it worked

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Anas Saradar