Firebase Realtime Database Internal Data Representation For Android
The Story I have an Android application which heavily relies on the Firebase Realtime Database. So far I do not have any problem using it. But I need to store some highly sensitive
Solution 1:
After inspecting the file you mentioned, yes it's indeed a SQLite database file (app.firebaseio.com_default).
The data is saved in serverCache table and it contains 2 columns: path (TEXT) and value (BLOB). path is the path to the data in firebase database, something like /users/-KOasdbcde and the value is the JSON value of that path.
EDIT

Post a Comment for "Firebase Realtime Database Internal Data Representation For Android"