Skip to content

Instantly share code, notes, and snippets.

@jimbray
Created November 5, 2014 01:50
Show Gist options
  • Select an option

  • Save jimbray/71cbcaf2508735e13374 to your computer and use it in GitHub Desktop.

Select an option

Save jimbray/71cbcaf2508735e13374 to your computer and use it in GitHub Desktop.
获取Android程序版本号
public static String getCurVersionName(Context context) {
String versionName = null;
try {
PackageInfo pInfo = context.getPackageManager().getPackageInfo(
context.getPackageName(), 0);
versionName = pInfo.versionName;
} catch (NameNotFoundException e) {
versionName = "没有版本号";
}
return versionName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment