Skip to content

Instantly share code, notes, and snippets.

@DjakaTechnology
Created March 11, 2019 12:42
Show Gist options
  • Save DjakaTechnology/c3a56ff95a69b463347c4d08d91f23f1 to your computer and use it in GitHub Desktop.
Save DjakaTechnology/c3a56ff95a69b463347c4d08d91f23f1 to your computer and use it in GitHub Desktop.
fun getUserModel(c: Context): UserModel? {
val pref = c.getSharedPreferences(Session.SESSION, MODE_PRIVATE)
return try {
Gson().fromJson<UserModel>(pref.getString(Session.USER, null), UserModel::class.java)
} catch (e: Exception) { null }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment