So far I have made a text file in my assets folder and I can read it fine and does what it is supposed to do. When I write to it using the following:
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(("0").getBytes());
fos.close()
it works. However when I close my app and reopen it later, it does not remember anything I changed it to.
Any ideas?