How to notify users about an Android app update?

前端 未结 17 830
眼角桃花
眼角桃花 2020-11-28 23:30

I\'ve built an Android app which is now on Play Market. From time to time, I make updates to it, and I\'d like to let users know that a new version is available.

How

17条回答
  •  爱一瞬间的悲伤
    2020-11-29 00:27

    There are two models that are basically used to tackle the issue.

    Pull Based
    Push Based
    

    Its depends on the architecture or design of particular system that determines whether pull based or push mechanism is used.

    For pull based model you just make one http request to concerned server regarding the new version of application. The current application version no can be saved in SQLLite in android application. This can be given to server and new version can be checked against it at the server.

    For push mechanism you can use C2DM push notification service.. details of which are given at http://code.google.com/android/c2dm/

提交回复
热议问题