Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get Device Token from Parse (event) #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions android/example/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
var Parse = require('eu.rebelcorp.parse');

Parse.addEventListener("tokenReceived",function(e) {
Ti.API.info("::PARSE::tokenReceived::"+JSON.stringify(e.deviceToken));
});
Parse.start();

// Subscribe of unsubscribe to Parse Channels
Expand Down
9 changes: 9 additions & 0 deletions android/src/eu/rebelcorp/parse/ParseModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/
package eu.rebelcorp.parse;

import java.util.HashMap;

import org.appcelerator.kroll.KrollModule;
import org.appcelerator.kroll.annotations.Kroll;

Expand Down Expand Up @@ -128,6 +130,13 @@ public void done(ParseException e) {
if (e != null) {
Log.e(TAG, "Installation initialization failed: " + e.getMessage());
}
else
{
String deviceToken = (String)ParseInstallation.getCurrentInstallation().get("deviceToken");
HashMap<String, Object> dict = new HashMap<String, Object>();
dict.put("deviceToken",deviceToken);
fireEvent("tokenReceived", dict);
}
}
});
}
Expand Down