1

If my new apk version is in drop box then How to send new update notifications to users' devices.

Is it possible?

Note:my apk is not available in google play

user2240097
  • 311
  • 3
  • 11

3 Answers3

1

Use some kind of push notification platform like google`s firebase: https://firebase.google.com/docs/cloud-messaging/ Using firebase you can send push notifications from their console or your own webservices and in each push notification you can enter any data you want the user to use, for example a link to the .apk you want him to download. And then the user can install it like here: Android: install .apk programmatically

Community
  • 1
  • 1
Yair P
  • 36
  • 6
0

It is called push notifications. You can learn it here.

Siddharth Venu
  • 1,318
  • 13
  • 26
0

You need API which sends you apk version detail and then compare/check your current running application versio, if it is lower then show notification to user for app update or download new apk and install programmatically.

Uttam Panchasara
  • 5,735
  • 5
  • 25
  • 41