1

我正在尝试将 Google 地图集成到我的 Android 应用程序中。我遵循了本教程:https ://blog-emildesign.rhcloud.com/?p=435 。我按照建议做了一切。这些是错误日志中的错误:

E/Google Maps Android API(28238): Failed to load map. Error contacting Google servers. This is probably an authentication issue (but could be due to network errors).
E/Google Maps Android API(28238): Authorization failure.  Please see https://developers.google.com/maps/documentation/android/start for how to correctly set up the map.
E/Google Maps Android API(28238): Ensure that the following correspond to what is in the API Console: Package Name: com.example.kontrollen, API Key: xxxxxxxxxxxxxx, Certificate Fingerprint: xxxxxxxxxxxxxxxxxxxxxxx

这是我的谷歌帐户: 在此处输入图像描述

你有什么想法我能做什么吗?

这是我的 AndroidManifest:

  <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.kontrollen"
    android:versionCode="1"
    android:versionName="1.0" >
<permission android:name="com.example.kontrollen.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>
<uses-permission android:name="com.example.kontrollen.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
    <uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="xxxxxxxxxxxxxxxxxxxxxxxxxxx" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.kontrollen.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
4

5 回答 5

8

我通过卸载应用程序并清理项目文件夹解决了这个问题。我没有改变任何东西。谢谢您的帮助。

于 2013-06-14T14:01:30.070 回答
1

编辑答案:

尝试将元数据放在应用程序标记中,最好是在结束标记之前,例如

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="xyz" />
</application>
于 2013-06-14T11:49:30.347 回答
1

按照 url 创建您的应用程序 google api 密钥我最近这样做了.. 它成功了。

https://code.google.com/apis/console/ ------------ Google API
https://developers.google.com/maps/documentation/android/start ---- -------- 箱子地图

仔细阅读这些页面,此页面中给出的每一件事.. 遵循相同但确保您生成了正确的 SHA1 指纹

当您要创建应用程序时,请确保在真实设备上运行它,因为它需要 google play 服务才能运行,在您的应用程序中添加 google pay 服务

于 2013-06-14T12:03:27.310 回答
1

按照以下步骤自行跟踪错误 针对您的错误类型的步骤

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

1.检查清单中的互联网或 gsf 阅读器权限,如上所示。
2.检查您在清单中使用的包名称。
3.在您的 api 控制台中检查您启动的服务是Google Maps Android API v2.
4.检查库谷歌播放服务是否导入。
5.如果没有解决方案有效,请按照此链接尝试新方法 - https://developers.google.com/maps/documentation/android/start

6.Also keytool命令生成sha1--i使用的是
-keytool -v -list -alias androiddebugkey -keystore C:/Users/username/.android/debug.keystore

于 2013-06-14T12:37:22.157 回答
1

我实际上已经从工作室制作了一个地图活动,并使用它生成的链接来设置地图 API。我出错的地方是,我将它放在一个包中,并且为该应用程序注册的包名称与该文件夹名称相同。对于前。如果应用程序包名称是

com.awesome.shit

保存在 API 中的包是

com.awesome.shit.maps

改变它,它开始工作。

于 2017-04-24T13:15:41.307 回答