I am trying to access the sharepreference value from an activity to one service but it is throwing NullPointerException, I tried a lot but still I am getting the same problem, I searched many question related with this and tried their ways to solve but it didnt worked. It will be great of you if you please guide me on this. Thanks in Advance,
Here is the code
I have defined SharePreferences in my service class as
SharedPreferences preferences=PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
Editor editor=preferences.edit();
and than I am trying to put value in it in My Activity as
foregroundService.editor.putString(foregroundService.com, data.getComponent().toString());
foregroundService.editor.commit();
and again going back in service class to access the value as
preferences.getString(com, "not available");
Please Help, Thanks