This is my code
Intent intent = new Intent(Intent.ACTION_DELETE);
intent.setData(Uri.parse("package:" + theApp.getAppOpen()));
startActivity(intent);
When startActivity is called, a default prompt comes up, asking the user whether they want to uninstall that app.
How can I tell if the user says "ok" to uninstall the app? Assume my app is not the one being uninstalled.