Skip to content

Instantly share code, notes, and snippets.

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 QuadFlask/8b959b396b21a3664af538749daf7783 to your computer and use it in GitHub Desktop.
Save QuadFlask/8b959b396b21a3664af538749daf7783 to your computer and use it in GitHub Desktop.
안드 앱 설치 / 삭제
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "app.apk")), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Intent intent = new Intent(Intent.ACTION_DELETE);
intent.setData(Uri.parse("package:com.example.mypackage"));
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment