Skip to content

Instantly share code, notes, and snippets.

@tdcolvin
Created February 3, 2023 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdcolvin/7e28f7e26f6191b9408f7117b822bc33 to your computer and use it in GitHub Desktop.
Save tdcolvin/7e28f7e26f6191b9408f7117b822bc33 to your computer and use it in GitHub Desktop.
fun writeToSharedPrefs(value: String) {
with (sharedPreferences.edit()) {
putString("test", value)
apply()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment