[펌글][Android] SharedPreferences 에 저장한 데이터가, 앱을 삭제해도 지워지지 않는 경우

By | 1월 18, 2021

- 출처: http://stackoverflow.com/questions/41808957/sharedpreferences-not-reset-on-reinstall

 

 

In Android Marshmallow Google introduced the "Auto Backup" feature which is turned on by default if your targetSdkVersion is >=23.

This will back up your database and SharedPreferences by default and restore it when you re-install the application. To turn this feature off you have to add android:allowBackup="false" to your AndroidManifest.xml.

 

 

그러나 이렇게 allowBackup="false" 로 할 경우, 결과적으로 앱 업데이트시 사용자가 수정한 데이터가 리셋되므로 거의 안쓸 것 같긴 하다.

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments