Creating an Android Notification Server

Is there any documentation on how to create your own Android notification server? I am currently using GCM, but due to the nature of the application and the fact that notifications are a very important feature in my application, I would prefer to implement this service internally so that I can control the bandwidth and not have any artificial limits (even if that's hundreds of thousands of notifications per day). I would also like to use the same notification server later with the iOS version of the app, and for this reason a custom-built notification server is preferred.

Ideally I would like to know what it takes to write a messaging system like this (in an Android interface). To clarify further, I would like to understand how (at the top level) GCM notification internally works on Android and how to replicate this functionality yourself.

Any help would be greatly appreciated.

thank

+3


source to share


2 answers


over the past 3 months, I feel the same way as you.

1, you should read this first mqtt .

2 and give yourself 1 hour of watching this



3, there are many examples from there on how to integrate the client and over here for the server.

EDIT: Some success stories here from facebook.

It's worth doing. :) I hope this helps you :)

+5


source


I think Pushwoosh does exactly what you want to do. There is also UrbanAirship , but unlike Pushwoosh, UrbanAirship is not free.



+1


source







All Articles