Skip to content

Instantly share code, notes, and snippets.

View anburocky3's full-sized avatar
๐Ÿ˜Ž
Creating new stuffs.

Anbuselvan Annamalai anburocky3

๐Ÿ˜Ž
Creating new stuffs.
View GitHub Profile
@john1jan
john1jan / PrefKeys.java
Last active February 16, 2022 23:45
Utils class for storing and retrieving data from SharedPreference in Android
/**
* Created by john.francis on 24/05/16.
*/
public class PrefKeys {
public static final String USER_INCOME = "USER_INCOME";
public static final String USER_MARITAL_STATUS = "USER_MARITAL_STATUS";
public static final String USER_SALARY_FLOAT= "USER_SALARY_FLOAT";
public static final String USER_SALARY_LONG= "USER_SALARY_LONG";
public static final String USER_AGE= "USER_AGE";
}