I am trying to save JSON array to local storage in Android and I can't retrieve it
//that to send Json array to shared preferences
save.edit().putString("courses", courses.toString()).apply();
//that to retrieve it
String jsonObject = PreferenceManager.
getDefaultSharedPreferences(this).getString("courses","");
What is the solution for this problem?