How to delete shared preferences data from App in Android

前端 未结 24 2394
日久生厌
日久生厌 2020-11-22 14:37

How do I delete SharedPreferences data for my application?

I\'m creating an application that uses a lot of web services to sync data. For testing purposes, I need to

24条回答
  •  無奈伤痛
    2020-11-22 15:27

    Just did this this morning. From a command prompt:

    adb shell
    cd /data/data/YOUR_PACKAGE_NAME/shared_prefs
    rm * // to remove all shared preference files
    rm YOUR_PREFS_NAME.xml // to remove a specific shared preference file
    

    NOTE: This requires a rooted device such as the stock Android virtual devices, a Genymotion device, or an actual rooted handset/tablet, etc.

提交回复
热议问题