Hi I have some problems in creating the sqlite database in android.
Everything is ok on the emulator, I can create the database. But it doesn\'t work on the actually
It's very easy to solve You must have not added .db extension in your DataBase Name declared in the db java file For eg, public static final String DB_NAME = "tasks.db";
public static final String DB_NAME = "tasks.db";
DON'T FORGET THE .db EXTENSION