Sto seguendo questo tutorial: https://developers.google.com/maps/documentation/android/start#overview su come aggiungere Google Maps a un'app all'interno dell'SDK Android.
L'unico problema che mi sembra di avere è durante questo bit (ho fatto tutto il resto senza errori):
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').
Ho provato a seguire la soluzione di questa persona allo stesso problema: aggiornamento della libreria di Google Play Services e simbolo mancante @ integer / google_play_services_version
ma ricevo ancora lo stesso errore. Qualche aiuto per favore?