Expected Begin_array But Was Begin_object | Arraylist Issue
I'm using the Gson library to save and retrieve an ArrayList of Players Objects. My onStop() @Override protected void onStop() { super.onStop(); SharedPreferences prefs =
Solution 1:
You probably write to the same preferences entry somewhere else. Ensure that your key (GUARD
) is unique throughout the application.
Post a Comment for "Expected Begin_array But Was Begin_object | Arraylist Issue"