How to clear old preferences when updating Android app?

后端 未结 4 1509
庸人自扰
庸人自扰 2020-12-30 05:32

I have an app on the Google Play market. For various reasons that I won\'t bother going into, I have changed the type of some of my preferences. For example a preference t

4条回答
  •  悲&欢浪女
    2020-12-30 05:54

    You can also append the version number while getting SharedPreferences like this

    context.getSharedPreferences("MyKey" + app_version_no, Context.MODE_PRIVATE);
    

    So if you update the app, the version number will change and you will have new set of preferences.

提交回复
热议问题