App export Then app file permission does not show, no file read and write permission available
What i understood by the information provided by you is that the app is not asking permission to read and write external storage, if thats the case then try this:
Taifun
October 30, 2024, 5:17pm
#3
What kind of files do you want to read or write and where?
From an Android point of view there are an → Internal Storage and an → External Storage.
1. Internal Storage
The Internal Storage can only be accessed with a rooted device.
1.1 The app package is saved in
/data/data/<packageName>/
1.2. The Private directory is
/data/user/0/<packageName>/files/
This private directory can be used with the File component to save / read text (setting the path without a slash). It can only be accessed by your app and is automatically removed when the app is un…
Why do you think, you have a permission issue?
Also some relevant blocks might help us to help you…
Taifun