Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

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

public class Main {
    /** Returns the value of the versionCode attribute. */
    public static int getVersionCode(Context context) {
        int versionCode = 0;
        PackageManager pm = context.getPackageManager();
        String packageName = context.getPackageName();
        try {
            versionCode = pm.getPackageInfo(packageName, 0).versionCode;
        } catch (NameNotFoundException e) {
            throw new RuntimeException(e); // Should never happen.
        }
        return versionCode;
    }
}