我正在尝试在我的应用中设置GoogleMap视图,到目前为止地图显示为空白。我的LogCat中出现以下错误:
01-14 00:23:47.471 17271-17639/? E/Google Maps Android API: Authorization failure. Please see https://developers.google.com/maps/documentation/android/start for how to correctly set up the map.
01-14 00:23:47.491 17271-17639/? E/Google Maps Android API: In the Google Developer Console (https://console.developers.google.com)
Ensure that the "Google Maps Android API v2" is enabled.
Ensure that the following Android Key exists:
API Key: <My API key>
Android Application (<cert_fingerprint>;<package_name>): <MY:SHA:HASH>;<com.my.app>
在我的Google Developer Console
上,我启用了Google Maps Android API
,并且我正在使用相应的生成的API密钥。我的AndroidManifest.xml
文件中的设置如下所示:
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/map_api_key"/>
知道我可能会出错吗?任何帮助表示赞赏。