Re: [android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-30 Thread ashok chakravarthy
you can also use GCM(Google cloud messaging) to push the message to application when ever update is available and application will get the latest apk from your server On Fri, Aug 17, 2012 at 11:04 PM, gt8887b wrote: > The most straightforward way is to periodically poll the server to see if > a

[android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-17 Thread gt8887b
The most straightforward way is to periodically poll the server to see if a new update is available. Then just point the browser to the location of your apk file Intent i = new Intent(Intent.ACTION_VIEW); > > i.setData(Uri.parse("http://your.site.com/yourAppFile.apk";));

[android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-16 Thread gjs
Hi, Do what you did for a desktop app - have your app periodically check some server for updates. regards On Friday, August 17, 2012 6:56:30 AM UTC+10, Jon Helms wrote: > > I have done some searching and haven't found anything, so I must be > searching wrong, but since I didn't find anything I