Skip to content

Instantly share code, notes, and snippets.

@ishitcno1
Created September 12, 2014 09:27
Show Gist options
  • Select an option

  • Save ishitcno1/52f85427234dd7a49fcf to your computer and use it in GitHub Desktop.

Select an option

Save ishitcno1/52f85427234dd7a49fcf to your computer and use it in GitHub Desktop.
android common intent
// uninstall a package
Intent uninstallIntent = new Intent(Intent.ACTION_DELETE);
uninstallIntent.setData(Uri.parse("package:com.example.app"));
startActivity(uninstallIntent);
// install a package
Intent installIntent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
Uri uri = Uri.parse("file://" + Environment.getExternalStorageDirectory() + "/download/test.apk");
installIntent.setData(uri);
startActivity(installIntent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment