//获取版本号 public static int getVersionCode(Context context){ try { return context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionCode; }catch(PackageManager.NameNotFoundException e){ return 0; } }
11-02
11-02