I am new to Android and want to use MQTT as push notifier for Android from Server.
i have read about MQTT but does not understand well.
Basic Steps
For Ex. Cd
C:\wamp\bin\php\php5.3.0
[1] Install PEAR
Now we have to install the PHP PEAR (i.e. not installed by default) by running the command below.
php -d phar.require_hash=0 ./PEAR/go-pear.phar
OR
php -d phar.require_hash=0 go-pear.phar
Now check the directory PEAR under C:\wamp\bin\php\php5.3.0\PEAR
(Installed or Not).
Now in the Directory C:\wamp\bin\php\php5.3.0
there is PEAR_ENV.reg
(Registry File) is create, so double click on that to change PHP.ini
file with PEAR invironment
Now as pear is installed we have to run the following commands (Optional).
pear upgrade
pear install upgrade-channels
So the PEAR setup is now completed
[2] Install SAM (Simple Asynchronous Messaging)
To install SAM we have to Run the Following Command
Goto C:\wamp\bin\php\php5.3.0
Pecl install –B SAM
[3] Choose and Run Mosquitto or RSBM
NOW YOUR SERVER IS CONFIGURED. YOU CAN USE IT FOR PUSH NOTIFICATION.
You need:
Dale Lane has written a nice guide on this (http://www.dalelane.co.uk/blog/?p=1599) and there is also a good set of resources about MQTT (https://github.com/mqtt/mqtt.github.io/wiki)
If you want to use MQTT for send push notification in android device then this demo will be best for you.
By using this example you can send push notification to your android device.
https://github.com/tokudu/AndroidPushNotificationsDemo
If you want to create your own Push service like LEADBOLT,AIRPUSH,etc.. then you have to required the following things.
[1] Configure your own server for send push notification.(like tokudu worked in PHP,WAMP) For configure SERVER.. [A] Install PEAR [B] Install SAM [C] Configure SAM
[2] You need mosquitto or IMB's RSMB for selecting target Android device. [3] You need some android code for receiving notification,send keep alive signals to server,create connection with server,etc... (Which can be found in TOKUDU example).
If you have any problem then tell me , i will definitely help you.