I\'m trying to use SharedPreferences here is what i do
SharedPreferences
public void StoreToshared(Object userData){ SharedPreferences mPrefs = getPreferences(MOD
You need to convert the string data from SharedPreferences back to a PoJo using Gson. Simply do this:
Object userData = new Gson().fromJson(data, Object.class);
I guess that should solve it.