I have a question and I hope you can help me with it.
I created an aplication that need to store a data in the Android device THAT NOBODY CAN ACCESS apart from me in the source code.
I search for it a I found the FileOutpuStream and FileInputStream solution :
private String file="mydata", data;
FileOutputStream fOut = openFileOutput(file,MODE_PRIVATE);
fOut.write(data.getBytes());
fOut.close();
and
FileInputStream fin = openFileInput(file);
My question is where is the file created store ? And is it sure that nobody can access it even if they find the file in their device ?