I created a bundle that contains a collection of about 20,000 documents. I correctly created my bundle, and now I need the device running the app to download the bundle for the first time and save it on the device. This way, the various activities that require using this collection won’t connect to Firebase every time but will take the content directly from the bundle saved locally on the device’s memory. I updated the manifest to ask the user for the necessary permissions to access the device’s memory, but despite this, it seems like the app doesn’t prompt the user to grant the permissions. How can I solve this? Here are the strings I included in the manifest that should prompt the user to grant these permissions:
(and then .WRITE_EXTERNAL_STORAGE .READ_EXTERNAL_STORAGE)
I want the app to prompt the user to grant the necessary memory permissions to download my bundle.txt file.
1