1
I have an app that should only be used by a number x employees, so it’s not on the playstore, but wanted to know how I can make available updates and install them.
1
I have an app that should only be used by a number x employees, so it’s not on the playstore, but wanted to know how I can make available updates and install them.
2
If you would like to check if you have app updates (without interacting with Google Play), you would obviously have to put the app on a server (providing your current version) and leave the server check if there is a newer version available. If this is the case, let the server respond with a changelog and URL to the latest version.
There are libraries to do this:
Browser other questions tagged java android updating
You are not signed in. Login or sign up in order to post.
I found this question here and that’s just what I need. Thanks for your help. Routine downloads a file from the internet and when finished asks android to open in an Activity.
– GabrielLocalhost