How to examine SharedPreferences from adb shell?

前端 未结 8 714
傲寒
傲寒 2021-01-30 10:30

Now that we can Examining sqlite3 Databases from a Remote Shell, is it possible to examine SharedPreferences from adb shell? Since it would be much more convenient to examine an

8条回答
  •  终归单人心
    2021-01-30 11:12

    If you are using shared_preferences for Flutter, the file is /data/data/your.app.package.name/shared_prefs/FlutterSharedPreferences.xml. Note that if you edit the file, you must restart your app for your changes to be visible to your app. Doing a hot reload/hot restart doesn't expose your manual changes to your app.

提交回复
热议问题