Функция за взимане на версията на апликацията от Manifest
public static String getAppVersion(Context context) throws NameNotFoundException { String version = null; try { version = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName; } catch (NameNotFoundException e) { Log.w("Version field", e.getMessage()+", Android version field is not accessible"); throw e; } return version; }