Hi,
We have already got some documentation how to use cordova with unified push by using the
PushPlugin. But I was thinking about forking it and making our own version I think
Matthias had this idea as well. If you look at the PushPlugin now there is a lot of things
that are platform specific. For instance to register you should do:
if (device.platform == 'android' || device.platform == 'Android') {
pushNotification.register(successHandler, errorHandler,
{"senderID":"replace_with_sender_id",
"ecb":"onNotificationGCM"});
} else {
pushNotification.register(tokenHandler, errorHandler,
{"badge":"true", "sound":"true",
"alert":"true", "ecb":"onNotificationAPN"});
}
Then there are some more platform specific thing that we could remove as well, because we
know that you are going to use this together with Unified Push we could make the process
of registering a lot easier and create only one register function that works for both
platforms:
pushNotification.register(successHandler, errorHandler,
{"badge":"true", "sound":"true",
"alert":"true", "senderID":"123",
"ecb":"onNotification"});
Making it easier for people to get started with cordova and for us less documentation to
maintain ;)