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 ACCESS_TOKEN_SHARED_PREFERENCE = "com.microsoft.identity.client.token"; static SharedPreferences getAccessTokenSharedPreference(final Context appContext) { return appContext.getSharedPreferences(ACCESS_TOKEN_SHARED_PREFERENCE, Activity.MODE_PRIVATE); } }