Java tutorial
//package com.java2s; // This code is licensed under the MIT License. import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String REFRESH_TOKEN_SHARED_PREFERENCE = "com.microsoft.identity.client.refreshToken"; static SharedPreferences getRefreshTokenSharedPreference(final Context appContext) { return appContext.getSharedPreferences(REFRESH_TOKEN_SHARED_PREFERENCE, Activity.MODE_PRIVATE); } }