I am using Android HockeyAppSDK to deploy updates for an application. I am trying to use docs to configure the default UpdateManager class to allow updates to be installed automatically, without prompting the user to accept the update.
I am completely unsure how to handle this. The obvious way (in my opinion, anyway) is to do the following:
private void checkForUpdates () { UpdateManager.register (this, Constants.HOCKEY_API_KEY, new UpdateManagerListener() { public void onUpdateAvailable() {
Has anyone done this before or can find a way to do this?
Thank you very much
source share