Upon opening the application and the database, I get the following error in Android
```
[Error: You attempted to set the key `dblocation` with the value `"nosync"` on an object that is meant to be immutable and has been frozen.]
```
Opening the app first time when the app is totally killed, works fine. It opens db without a problem.
However, when I try to open the app again after pressing hardware back button to quit the app and open the app again (without killing the app from the process manager),
above error occurs and cannot proceed further.
At the moment I am storing the db instance created by openDatabase method to mobx(state management) observable variable to use it everywhere within the app. Could this be problem?
If storing db instance in global state is a problem, what is the most appropriate way to access the db instance across the entire app?
## Expected Behavior
SQLite db should open fine.
## Steps to Reproduce (for bugs)
This is my open database config for android:
```
const db = SQLite.openDatabase({name: DB_NAME}, openCB, errorCB);
```
## Your Environment
React Native SQLite Storage Version used:5.0.0
React Native version used:0.63.3
Operating System and version (simulator or device): android 10