Estoy siguiendo este tutorial: https://developers.google.com/maps/documentation/android/start#overview sobre cómo agregar Google Maps a una aplicación dentro del SDK de Android.
El único problema que parece tener es durante este momento (he hecho todo lo demás sin errores):
Edit your application's AndroidManifest.xml file, and add the following declaration within the
<application> element. This embeds the version of Google Play services that the app was compiled with.
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
The error is:
No resources found that match the given name (at 'value' with value '@integer/
google_play_services_version').
Intenté seguir la solución de esta persona para el mismo problema: actualización de la biblioteca de servicios de Google Play y falta el símbolo @ integer / google_play_services_version
pero sigo recibiendo el mismo error. ¿Alguna ayuda por favor?