简体   繁体   中英

will the android old edition apk cache be used by the new edition apk

my android apk will write some data into local database SQLite , and when I upgrade the apk to a new version, will the cached data be used by the new version.

If yes, I want to clean the cache because it will effect the behavior of my app.

Yes the new version will use the old cache.
If you want to clean it, just add a code in your new program where you delete all the relevant tables.
Or you just can delete the database all together.

context.deleteDatabase(DATABASE_NAME);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM