Reputation: 2457
I've been asked to update the Google Maps of an existing Android app. I don't know how to determine what the version the app is currently using. How can I find this?
Upvotes: 2
Views: 1297
Reputation: 10547
You can use getPackageManager().getPackageInfo()
to find the version of packages being used. For example:
try {
Log.i("Tag", "Using Map Version: " + context.getPackageManager().getPackageInfo("com.google.android.gms",0).versionName);
} catch (Exception e) {}
Upvotes: 5
Reputation: 130
You can find this by going to Settings -> Applications -> Application Manager -> Maps Application (The version and other info shows herein)
If your question is how to update, it is updated within the play store.
Upvotes: 1