BuzzardParking / buzzard-android

An android app for better parking
3 stars 1 forks source link

setup Parse server #8

Closed realdlee closed 8 years ago

realdlee commented 8 years ago

Resources: https://github.com/ParsePlatform/parse-server-example https://github.com/ParsePlatform/parse-server/wiki/Parse-Server-Guide https://parseplatform.github.io/docs/android/guide/#saving-objects

realdlee commented 8 years ago

Parse.initialize(new Parse.Configuration.Builder(getApplicationContext()) .applicationId("buzzard") .server("https://buzzard-parking.herokuapp.com/parse/") .build());

// '/' important after 'parse'

realdlee commented 8 years ago

Additional set up required for push notifications: https://github.com/ParsePlatform/parse-server/wiki/Push