Get version number : Version « Hardware « Android






Get version number

 

import android.content.Context;
import android.content.pm.PackageManager.NameNotFoundException;

class Main {
  public static String getVersion(Context context) throws RuntimeException {
    try {
      return context.getPackageManager().getPackageInfo(
          context.getPackageName(), 0).versionName;
    } catch (NameNotFoundException ex) {
      throw new RuntimeException("Failed to get app version");
    }
  }

}

   
  








Related examples in the same category

1.Honeycomb version
2.Check Android build version
3.Get version information
4.Using VersionedGestureDetector
5.downloads and installs the latest version of our App
6.Get App Version Name
7.Get App Version Code
8.Get Version Name with PackageManager
9.Get Package Version Code and Name
10.Android SDK version
11.Check for intallation, app name, app version, app version code
12.Utility class providing array to int/long conversion for data received from devices through adb.
13.get Version Name
14.get Version Code
15.Byte value conversion