In my App the sqlite file was located on the sdcard. I used this code to set the path to the file and open it.
File dbfile = new File(Environment.getExternalStorageDirectory() + "/Android/data/mypackagename/mydatabase.sqlite" );
SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(dbfile, null);
Now i want to put the sqlite file in the assets folder in my project. But I didnt get which is the path to file then? Hope someone can help me :)