Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String VERSION = "version"; public static final String VERSION_KEY = "version_key"; public static void putVersion(Context context, String version) { SharedPreferences preferences = context.getSharedPreferences(VERSION, Context.MODE_PRIVATE); preferences.edit().putString(VERSION_KEY, version).commit(); } }