Skip to content

Instantly share code, notes, and snippets.

@9re
Created April 17, 2013 09:54
Show Gist options
  • Select an option

  • Save 9re/5403128 to your computer and use it in GitHub Desktop.

Select an option

Save 9re/5403128 to your computer and use it in GitHub Desktop.
get apk path
PackageManager pm = getPackageManager();
for (ApplicationInfo app : pm.getInstalledApplications(0)) {
Log.d("PackageList", "package: " + app.packageName + ", sourceDir: " + app.sourceDir);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment