i'd like to allow users to download any updates directly
from my app (hosted on own server).

right now i do this:

the url contains a link to the http: link to the .apk file:

                Intent i = new Intent(Intent.ACTION_VIEW);
                i.setData(Uri.parse(url));

                startActivity(i);

minor problem is that the webviewer pops up briefly
and then the downloading starts.

visually not very nice.

is there a better way of doing this - w/o the webviewer
popping up.

-- 
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