이 튜토리얼을 따르고 있습니다 : https://developers.google.com/maps/documentation/android/start#overview Android SDK 내에서 앱에 Google지도를 추가하는 방법에 대해 설명합니다.
내가 가진 유일한 문제는이 비트 동안입니다 (다른 모든 것을 오류없이 수행했습니다).
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 기호 누락
하지만 여전히 같은 오류가 발생합니다. 도와주세요.