How
How to make a menu to import databases (files, spreadsheets, etc.) directly from the application, then display it on the next screen, how do you do it?
Taifun
November 10, 2022, 2:11am
#2
use the file component or the SAF extension depending on the directories you like to read from, see also
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…
Taifun