I want to check the current version of my application on the market and compare it with the current current version.
this code will retrieve the version of my application:
PackageManager m = androidContext.getPackageManager(); String app_ver = m.getPackageInfo(androidContext.getPackageName(), 0).versionName;
How can I get a version on the market?
thanks!
silly source share