I'm attempting to create a new ParseObject like so:
ParseObject message = new ParseObject("Message");
When I run the app, it gives me the following error:
java.lang.IllegalArgumentException: You must create this type of ParseObject using ParseObject.create() or the proper subclass.
This is my full code
ParseObject message = new ParseObject("Message");
message.put("content", "words go here");
message.saveInBackground();
More code can be posted if needed. All help is appreciated!