Tôi đang làm theo hướng dẫn này: https://developers.google.com/maps/documentation/android/start#overview về cách thêm Google Maps vào một ứng dụng trong Android SDK.
Vấn đề duy nhất mà tôi có vẻ đang gặp phải là trong thời gian này (tôi đã làm mọi thứ khác mà không có lỗi):
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').
Tôi đã cố gắng làm theo giải pháp của người này cho cùng một vấn đề: cập nhật Thư viện dịch vụ của Google Play và thiếu ký hiệu @ integer / google_play_services_version
nhưng tôi vẫn nhận được lỗi tương tự. Bất kỳ giúp đỡ xin vui lòng?