1. 程式人生 > >獲取android.apk版本號

獲取android.apk版本號

/**
	 * 獲得手機端版本號
	 */
	public int getVerCode() {
		int verCode = -1;
		try {
			verCode = Login.this.getPackageManager().getPackageInfo(
					"com.sunrun.Intercom", 0).versionCode;
		} catch (Exception e) {
			System.out.println("版本號獲取異常:" + e.getMessage());
		}
		return verCode;
	}

在AndroidManifest.xml清單檔案中

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sunrun.Intercom"
    android:versionCode="2"
    android:versionName="2.0" >

其中versionCode="2"就是APK的版本號