Skip to content

Instantly share code, notes, and snippets.

@artzmb
Created July 22, 2015 11:48
Show Gist options
  • Save artzmb/b444e86eec19acf7cd34 to your computer and use it in GitHub Desktop.
Save artzmb/b444e86eec19acf7cd34 to your computer and use it in GitHub Desktop.
Get version and build number
try {
PackageInfo info = getActivity().getPackageManager().getPackageInfo(getActivity().getPackageName(), 0);
textViewVersion.setText(String.format("%s (%d)", info.versionName, info.versionCode));
} catch (PackageManager.NameNotFoundException e) {
// Whatever
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment