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 <[email protected]> wrote: > 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")); >> >> >> >> startActivity(i); >> >> > > > > On Thursday, August 16, 2012 4:56:30 PM UTC-4, 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'm at a loss of what to >> do other than post here and ask. >> >> I am developing a corporate application that once released our employees >> will be able to install from our portal. Aside from final testing and such >> the only thing left is figuring out how we keep it up to date without using >> Google Play or Amazon AppStore. I'm sure others have done this and I have >> done it on desktop apps before, I'm just curious if there are some really >> straightforward ways of doing this for Android. >> >> We don't want it in the store because we don't want anyone to be able to >> find it that isn't an employee. >> > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

