android - Auto Update of application using HockeyApp SDK -


i using android hockeyappsdk deploy updates application. trying use docs customise default updatemanager class allow updates installed automatically, without prompting user accept update.

i quite unsure of how handle this. obvious way (in mind anyway) following:

private void checkforupdates () {      updatemanager.register (this, constants.hockey_api_key, new updatemanagerlistener() {          public void onupdateavailable() {            //i assume stuff need handled here              }     });      } 

has done before, or can find way it?

many thanks

after emailing support team hockey, believe within current compiled api not possible perform update without prompting users accept.

the whole source require modification , compilation before working expected seems.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -