Unable to create a new line when using Parse in android. I can get, but when I try to add a new line like this, I keep getting false, and a new line is not created.
What am I doing wrong here? I exactly follow what is given in the Parse-Android documentation.
ParseObject storyActivity = new ParseObject("StoryActivity"); storyActivity.put("createdByUser", user); storyActivity.put("story", story); storyActivity.put("type", likeUnlike); return storyActivity.saveInBackground().isCompleted();
Dinesh VG Jan 29 '16 at 13:54 on 2016-01-29 13:54
source share