How to send a message from my server to my Android application?

I want to control my own PUSH notification without using a third-party server, for example, for C2MD you need to notify PUSH through the Google server. So, there is some idea: how can I achieve this for Android?

+3
source share
2 answers

To achieve this, you can use a persistent TCP / IP connection.

Some resources for your reference.

http://tokudu.com/2010/how-to-implement-push-notifications-for-android/

http://mqtt.org

Stackoverflow seems to have a discussion on it

Does Android support real-time notification support?

+3
source

All Articles