私はこのチュートリアルに従っています: Android SDK内のアプリにGoogleマップを追加する方法についてのhttps://developers.google.com/maps/documentation/android/start#overview。
私が持っているように見える唯一の問題はこのビットの間です(私はエラーなしで他のすべてを行いました):
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').私は同じ問題に対してこの人の解決策を試そうとしました:Google Play Services Libraryの更新とシンボル@ integer / google_play_services_versionの欠落
しかし、まだ同じエラーが発生します。何か助けてください?
