I've developed an android app with react native expo, this app depends on a static data where the database can be considered as a read only database where I've a (.db) file which contain all the data and I need to read the data from the file and show it in in my app so I've followed expo-sqlite documentation on how to open a new SQLite database using an existing .db file you already have and it works correctly but only in online mode where in offline mode I can't get the data from the database.
I think the problem is that the expo-sqlite uploading the data on a server somewhere, so is there any thing to do inorder to make the database hosted locally