I am trying to implement AUTOUPDATE functionality in my android app, as it is a custom app not published via android market. So far I have everything working, however android tries to install the App and says "APPLICATION NOT INSTALLED". I don't know if it is important, but the App is already on the device, so it is an update.
The app downloads the APK file from the internet and stores it on the SDcard. Than I do this:
Uri packageURI = Uri.parse("package:my_package");
Intent intent = new Intent(Intent.ACTION_VIEW, packageURI);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + ApkName)),
"application/vnd.android.package-archive");
startActivity(intent);
Can anyone help? Thank you.

Uriyou are creating in the first line and putting into theIntentin the second line is being overwritten by theUriyou supply in the third line. You can simply delete the first line and use the one-parameterIntentconstructor that takes the action string. Also, don't use concatenation to create paths -- use theFileconstructor that takes aFileand aStringas parameters. – CommonsWare Nov 3 '11 at 22:36