My app downloads an app from the server and install it using below code Intent i = new Intent(Intent.ACTION_VIEW); i.setDataAndType(Uri.fromFile(f), "application/vnd.android.package- archive"); startActivity(i);
I want to get the app installation status(success/failure). In case of failure, i want to get the failure reason. Is there a way to get these information? -- 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

