Skip to content

Instantly share code, notes, and snippets.

@chris-piekarski
Created January 8, 2015 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-piekarski/45882033c4e3604e28a9 to your computer and use it in GitHub Desktop.
Save chris-piekarski/45882033c4e3604e28a9 to your computer and use it in GitHub Desktop.
Install APK on Android w/Activity prompt
File f = new File(filePath);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(f), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment