How to do push notification from server to android mobile

后端 未结 4 595
长情又很酷
长情又很酷 2021-01-31 02:26

I don\'t know anything about push notification. I am trying to learn. but I don\'t understand.

I have one table MySQL database in server system. When any changes are mad

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-31 03:11

    here is a good explanation about this:
    http://quickblox.com/developers/SimpleSample-messages_users-android

    The overall steps are:

    1. Create a google API project
    2. Enable push notifications for the project and get a API key
    3. Get a registration ID through android app (each device has a registration ID for a specific application)
    4. Create a server application to send your push messages as push notifications through google servers by GSM
    5. Create a notification when you get the push notification on the application side

    It's not something i can write all here by details. Use Google for every step.

提交回复
热议问题