我正在学习本教程:https : //developers.google.com/maps/documentation/android/start#overview 关于如何将Google Maps添加到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服务库更新和缺少符号@ integer / google_play_services_version
但我仍然遇到相同的错误。有什么帮助吗?