FastSave is An Android library for fast and easy access to Android Shared preferences. It allows you to save any type or list in the sharedpreferences and retrieve it in convenient way.
Add jitpack.io to your root gradle file (project level)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add FastSave-Android to your app level build.gradle dependency
dependencies {
implementation 'com.github.yehiahd:FastSave-Android:1.0.1'
}
You have to initialize the FastSave library inside your application class :
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
FastSave.init(getApplicationContext());
}
}
Usage
FastSave.getInstance().saveInt(key,value); // For saving Integer value
FastSave.getInstance().getInt(key); // For Getting Integer value
FastSave.getInstance().saveFloat(key,value); // For saving Float value
FastSave.getInstance().getFloat(key); // For Getting Float value
// And so on for other types.
//For Objects and Lists of Objects
FastSave.getInstance().saveObject(key,customObject); // For Saving Custom Object
FastSave.getInstance().getObject(key,classType); // For Getting Custom Object
//Example on getting customObject
FastSave.getInstance().getObject(key,Person.class); // assuming your custom class called Person
FastSave.getInstance().saveObjectList(key,listOfCustomObjects); // For Saving Custom Objects List
FastSave.getInstance().getObjectList(key,classType); // For Getting Custom Objects List
//clear all sharedPrefereces
FastSave.getInstance().clearSession();