zundi
zundi

Reputation: 2457

How to find my Google Map version in Android

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

Answers (2)

Chris Stillwell
Chris Stillwell

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

Zach S.
Zach S.

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

Related Questions