Skip to content

Instantly share code, notes, and snippets.

@Lavanyagaur22
Created January 23, 2020 15:53
Show Gist options
  • Save Lavanyagaur22/2c6864ab4a6233341fd95422985bc09c to your computer and use it in GitHub Desktop.
Save Lavanyagaur22/2c6864ab4a6233341fd95422985bc09c to your computer and use it in GitHub Desktop.
val myObject = MyObject()
//set variables of 'myObject', etc..
// val editor = prefs.edit() -> gives the SharedPreferences.Editor
val gson = Gson();
val json = gson.toJson(myObject);
editor.putString("MyObject", json);
editor.apply();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment