I am making an Android application and need to decide what type of data storage method to use. The size of the data I need to store is fairly small and therefore I was thinking of storing my data in a JSON format and saving it to a file internally.
I want to protect the data I am storing and was wondering if using an SQLite database adds any additional security in comparison with that a file has? The online Android resources states that both internal file storage and an SQLite Database are only accessible to the application they were created by and doesn't introduce either as being dominant in terms of security. Would anyone be able to help with some useful information?