I have an React Native (Expo) project. I use expo-file-system to store my data in files created by the app. If I publish an update on Play Store and user get this update will the data files be removed or not? It’s very necessary for my project.
Theese are the locations where I store data files.
export const focusDBPath = FileSystem.documentDirectory + "focusDB.json"
export const tagDBPath = FileSystem.documentDirectory + "tagDB.json"
I tried to publish an update on Play Store but I expect my data can be removed.