Skip to content

Commit

Permalink
Added android code equivalent of Parse.initialize()
Browse files Browse the repository at this point in the history
  • Loading branch information
abhilash1in committed Feb 19, 2016
1 parent 0501a93 commit 0a55fa1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.clientKey("myClientKey")
.server("http://myServerUrl/parse/") // '/' important after 'parse'
.build());
ParseObject testObject = new ParseObject("TestObject");
testObject.put("foo", "bar");
testObject.saveInBackground();
```

Expand Down

0 comments on commit 0a55fa1

Please sign in to comment.