Skip to content Skip to sidebar Skip to footer

The Meta-data Tag In Your App's Androidmanifest.xml Does Not Have The Right Value. - Google Maps

I'm trying to implement google-play-services library and it seems to me I'm doing everything right. Here's my stacktrace: 06-14 13:17:51.804: E/AndroidRuntime(22809): java.lang.Ill

Solution 1:

Your meta-data is nested and I think that's not the way it's supposed to be. Try to move the inner meta-data out of its current position:

<meta-data
     android:name="com.google.android.maps.v2.API_KEY"
     android:value="@string/google_api_key"/>
<meta-data
     android:name="com.google.android.gms.version"
     android:value="@integer/google_play_services_version" />

Solution 2:

Just as an aside, if you find yourself here after switching between multiple branches, make sure you manually uninstall the app on your test device and do a clean within Android Studio.

Solution 3:

I faced same issue

Expected 12451000 but found 10298000.

I just remove from my values

<integer name="google_play_services_version">10298000</integer>

Post a Comment for "The Meta-data Tag In Your App's Androidmanifest.xml Does Not Have The Right Value. - Google Maps"