I am creating a file and writing it like this:
outputStream = context.openFileOutput(symbol, context.MODE_PRIVATE);
outputStream.write(DATA.getBytes());
outputStream.close();
I can read the file from the app but I can't see the files in explorer. I need to make it visible in explorer so that it can be shared(for debugging). Also, I need the file to be in readable format (like txt) for the computer. Also, files needs to be stored in internal directory. How can I do it?