i want to check the current version of my app in the market and compare it with the current running version.
this code will retrive the version of my running app:
PackageManager m = androidContext.getPackageManager();
String app_ver = m.getPackageInfo(androidContext.getPackageName(), 0).versionName;
how i can retrive the version in the market?
thanks!