I'm running an app in production making use of Google Maps Android API v2 using support library, and just glancing over reference docs from Google I noticed I'm missing the following line:
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
Google documention seems to be missing explanation of this key.
How important is it to include the version in the manifest and what does it accomplish?
Thanks.