[android-developers] Invoke Download APK from my Application

2010-09-20 Thread Markus
Hello! I developed a simple Application.. So I want to implement a automatic update. If anybody starts the app, they start a request to a webservice where a new file path is found or not if the app is up to date. But if not I want to start the download (http://www.myDomain.com/ myApp_01.apk) but

Re: [android-developers] Invoke Download APK from my Application

2010-09-20 Thread Jim Blackler
*Intent intent = new Intent(android.intent.action.VIEW, Uri.parse( http://www.myDomain.com/myApp_01.apk;)); startActivity(intent);* Jim On 20 September 2010 09:19, Markus rookee1...@googlemail.com wrote: Hello! I developed a simple Application.. So I want to implement a automatic update. If