react-native-sqlite-2
react-native-sqlite-2 copied to clipboard
Use getDatabasePath instead of getFilesDir
I was trying to use Stetho to see the sqlite database and I could not. After looking through the file system, I noticed that you are storing the database files in the context.getFilesDir location, but I suspect tools like Stetho would work better if you used the context.getDatabasePath function instead.
I agree