Android APK Version Get getAppVersionCode(Context context)

Here you can find the source of getAppVersionCode(Context context)

Description

Returns version code of OpenSudoku.

Declaration

public static int getAppVersionCode(Context context) 

Method Source Code

//package com.java2s;

import android.content.Context;

import android.content.pm.PackageManager.NameNotFoundException;

public class Main {
    /** /*  w ww  .  j  a  va 2s . co  m*/
     * Returns version code of OpenSudoku.
     * @return
     */
    public static int getAppVersionCode(Context context) {
        try {
            return context.getPackageManager().getPackageInfo(
                    context.getPackageName(), 0).versionCode;
        } catch (NameNotFoundException e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. getAPKVersion(Context context)
  2. getAppVer(Context context)
  3. getAppVersionCode(Context context)
  4. getAppVersionName(Context context)
  5. getAppVersionName(Context context, String defVersion)
  6. getApplicationVersion(Context ctx)
  7. getFirstInstalled()