0

我正在阅读适用于 Android 的 Google Maps API 密钥教程,当我尝试使用 Android 应用程序密钥运行它时出现授权失败错误,但当我使用浏览器应用程序密钥时它可以工作。这是我的清单 xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.neatspots"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="17" />

<uses-feature android:glEsVersion="0x00020000" android:required="true"/>

<permission android:name="com.example.neatspots.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>

<uses-permission android:name="com.example.neatspots.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"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.neatspots.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>

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="..."/>
</application>    
</manifest>

这是我的 activity_main.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/map"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  class="com.google.android.gms.maps.MapFragment"/>

</RelativeLayout>

这是我的主要活动:

package com.example.neatspots;

import android.os.Bundle;
import android.app.Activity;


public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

这是我用来获取 SHA1 指纹的内容:

keytool -v -list -alias androiddebugkey -keystore /filepath/debug.keystore -storepass android -keypass android

我不知道是什么问题!

4

2 回答 2

1

您的应用程序是否允许在 Google 控制台上使用 google maps API?清单上定义的包必须与 Google API 控制台上定义的包名相对应,例如指纹;包名。

于 2013-02-05T22:39:50.987 回答
-1

首先检查您是否在项目中添加了谷歌库右键单击它选择属性然后选择android然后在底部添加googole库。如果您已经添加然后尝试此代码我向您发送一个链接只需打开它并检查错误在哪里在您的项目中,然后在您的系统模拟器上测试它,如果没有发生错误,然后在您的普通手机上运行。这是链接:http ://www.vogella.com/articles/AndroidGoogleMaps/article.html

于 2013-10-16T15:24:58.250 回答