Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1.           Intent i = new Intent();
  2.             i.setAction(Intent.ACTION_VIEW);
  3.             i.setDataAndType(Uri.fromFile(new File(path)), "application/vnd.android.package-archive" );
  4.              Log.d("ProjectsActivity", "About to install new .apk");
  5.             getApplicationContext().startActivity(i);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement