Is there a way to directly access the sqlite database from the assets folder, or is it always necessary to first copy this db to the device data directory, in the app's database folder?
(Example - Environment.getDataDirectory()+"/data/com.example.myapp/databases/myDb.db")
I ask because I have a db that is quite large (about 11MB) and has to be shipped with the app. After the database has been copied to the data directory, the app will take twice the space. I want to avoid this.
Also, is it possible to delete the contents of the asset folder after the app has been installed? This would help save some space.
Thanks