I'm trying to write an app for Android and I need to save the resposne from a server, I managed to do it by saving it in a txt file in this path:
String path= "/storage/emulated/0/Android/data/com.example.simone.pizzino/files/response.txt";
final File file = new File(path);
Testing it on my friend's phone he can't see the folder at that path, his path is something like data/data/"packageName"
, it doesnt work on the emulator in Android Studio either.
My phone is a Nexus 5X running 7.1 stock rom.
My friend is rooted using 6.1.
Is there some way to get a dynamic path to the application folder without having to state it as a constant?
Sorry if this question was already asked but I counldn't find a solution for my problem.
First thing you have to do is to add permission to access external storage in your manifest file
Save a File on Internal Storage
Save a File on External Storage