In my I am using Sqlite DB for some functional achievements. For that I made a db in firefox plugin and placed it in the assets folder and copied to the 'SDCARD' because I don't want to delete the app db after uninstalling the application.
Now I needs to get the DB version updated and want to place some column in some tables, But when I use the onUpgrade method of SQLiteOpenHelper, the method never gets called. even I increased the DB version of my app as well as my app version. What could be the reason behind this?
Does that not working because I am creating my db in SDCARD not in app directory?