I'm a beginner here. I've got two problem in android programming:
How can i open a Sqlite database, which is stored in the asset folder, in android? Which path i have to use to access to my app asset folder?
path = "file:///asset_folder/database.dat"; SQLiteDatabase db = null; db = SQLiteDatabase.openDatabase(path, null, SQLiteDatabase.OPEN_READONLY);
How can I copy a file to the internal memory(/data/data/...) on installing my app or in the first run, actually I want to copy a folder inside the asset folder into the internal memory on the first run.