我正在关注本教程:https ://developers.google.com/maps/documentation/android/start#overview ,了解如何将 Google 地图添加到 Android SDK 中的应用程序。
我似乎遇到的唯一问题是在这段时间(我已经完成了其他所有事情,没有任何错误):
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 update and missing symbol @integer/google_play_services_version
但我仍然遇到同样的错误。请问有什么帮助吗?