Android: onUpgrade not calling at database upgrade
I am developing the second version of my application. In which I am facing a problem. In my application the database is in the assets folder. Now I want to update my database from the assets folder in the second version. I tried the code to upgrade as : // Data Base Version. private static final int DATABASE_VERSION = 2; I changed the version from 1 to 2. //Constructor public DataBaseHelperClass(Context myContext) { super(myContext, DATABASE_NAME, null ,DATABASE_VERSION); this.context = myContext; //The Android's default system path of your application database. DB_PATH = "/data/data/com