Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.89 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.89 KB

Parse.com Push notifications for Titanium

Dependencies Dev Dependencies

Usage

A packaged CommonJS module can be found via Releases. Follow the guide on Using a Module or use gitTio:

gittio install com.sensimity.ti.parse

Configuration

To be able to use this module you'll need to add 2 types of configuration:

  • Alloy.CFG (iOS, Android)
  • tiapp.xml (Android)

Alloy.CFG

"parse": {
  "appId": "<your parse.com app id>",
  "apiKey": "<your parse.com rest api key"
}

tiapp.xml

<property name="Parse_AppId" type="string">your parse.com app id</property>
<property name="Parse_ClientKey" type="string">your parse.com client key</property>

For Android support this module has a dependency to an additional Parse module to be able to subscribe your device for GCM.

Known issues

This library only works for Alloy based Titanium apps because internally Backbone is used for the event dispatching.

Changelog

  • 0.1.0 Initial version

Issues

Please report issues and features requests in the repo's issue tracker.

Credits