I am creating an Android Application and I am using sqlite database in it. for that I have placed a sqlite file in assets folder of project and I am copying this file to pho
Database path may be different in different devices. You need to use Context.getDatabasePath(String) in order to get database path.
Context.getDatabasePath(String)
e.g.
File backupDB = context.getDatabasePath(backupDBPath);