Dodawanie wersji usług Google Play do manifestu aplikacji?

Wykonuję ten samouczek:https://developers.google.com/maps/documentation/android/start#overview jak dodać Mapy Google do aplikacji w zestawie SDK systemu Android.

Jedyny problem, jaki wydaje mi się mieć podczas tego bitu (zrobiłem wszystko inne bez błędów):

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').

Starałem się śledzić rozwiązanie tego samego problemu przez te osoby:Aktualizacja biblioteki usług Google Play i brakujący symbol @ integer / google_play_services_version

ale wciąż otrzymuję ten sam błąd. Jakaś pomoc proszę?

questionAnswers(18)

yourAnswerToTheQuestion