please guide me how to implement the push notification in android. according to my application when server hits any information at any time i want to display that info at that time. what i need to implement this in my android plateform.
- Please go through this link- stackoverflow.com/questions/3606101/…Avnish Kumar– Avnish Kumar2021-02-06 11:46:13 +00:00Commented Feb 6, 2021 at 11:46
- Please find the solution in stackoverflow.com/questions/3606101/…Avnish Kumar– Avnish Kumar2021-02-06 11:47:48 +00:00Commented Feb 6, 2021 at 11:47
2 Answers
3 Comments
As Alopix mentionned, the automatic way to do that is through Android Cloud, since Android 2.2.
Now If you want it before 2.2, here is what I choose to do to enable it in my application :
First, put a switch in your application, testing for the version of the Android system of the phone you are running on (with Build.VERSION and then the field SDK_INT).this way you know if you are in equal or above 2.2 or below.
Then, if you are below, you need to create a small php page, with for instance a timer, that will be executed regularly by your server, and you do a simple http request on this page to check if there are news available for your application.
Does that help?