I have quite a specific question.
First let me explain what I am trying to do and then the problem.
Basically what I am trying to do is to store an existing .db database file in assets folder and then after installation I want to copy the .db file from assets to the default database location in Android. Something similar to this page answer [link]How to use an existing database with an Android application.
Problem For unrooted device I cannot access /data/data/<<package name folder>>
. In this case where is the database file gets stored. In other term I want to copy a file from assets to applications default location for database which is DB_PATH = "/data/data/" + context.getPackageName() + "/databases/"
in case of a rooted device. Would it be the same for the unrooted device.