I would like to know how to read installed apk version. For example, from my app i would like to know what version of Skype is installed on my phone.
To Read my app version i use:
PackageInfo pinfo = null;
pinfo = getPackageManager().getPackageInfo(getPackageName(), 0);
String versionName = pinfo.versionName;
Of course with try/catch surrounded.