How to force update in Android application if new version is available?

后端 未结 6 486
小蘑菇
小蘑菇 2021-01-03 12:56

I am working on an application I want to give force update to app users if new version available on play store, the app should show a dialog message to user.

6条回答
  •  独厮守ぢ
    2021-01-03 13:42

    You can do the following things.

    1. You should have this functionality implemented in your app, which can check for the current version of your app on play store. and if a user is using the old version, then prompt them a dialog to update.
    2. your app should have any analytics (Facebook, Firebase, Localytics,etc.) SDK integrated which support In-app messages. with help of this, you can broadcast Push Notification or In-app messages to update the app.

    with the help of this techniques you can ask your users to update the app.

提交回复
热议问题