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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to