Try something like this: ``` class TokenManager(p...
# android
s
Try something like this:
Copy code
class TokenManager(private val app: Application) {
  var tokenSharedPreferences: SharedPreferences = app.applicationContext.getSharedPreferences(Constants.USER_TOKEN_PREF, Context.MODE_PRIVATE)
}