[android-developers] How to emulate onUpgrade call in SQLiteOpenHelper?

2010-10-17 Thread jlopeznava...@gmail.com
Hi, how can I emulate an onUpgrade call for my SQLiteOpenHelper class? I have tried changing the version number in my SQLiteOpenHelper class and versionCode in manifest but onUpgrade is not called. Any idea? I need to check my onUpgrade code before upload it to the market, I don't want my app's

Re: [android-developers] How to emulate onUpgrade call in SQLiteOpenHelper?

2010-10-17 Thread Kumar Bibek
You just need to increment the database version number. Install the new apk over the older version. It will be called just once. On Sun, Oct 17, 2010 at 10:02 PM, jlopeznava...@gmail.com jlopeznava...@gmail.com wrote: Hi, how can I emulate an onUpgrade call for my SQLiteOpenHelper class? I