我正在阅读适用于Android的Google Maps API密钥教程,当我尝试使用Android App密钥运行时,我收到授权失败错误,但是当我使用浏览器应用密钥时,它会正常工作。这是我的清单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
我不知道问题是什么!
答案 0 :(得分:1)
您的应用是否允许Google控制台使用google maps API?清单上定义的包必须与Google API控制台上定义的包名称相对应,如指纹; package-name。
答案 1 :(得分:-1)
首先检查你在你的项目中添加谷歌库右键单击它选择属性然后选择android然后在底部添加googole库。如果你已经添加然后尝试这个代码我发给你一个链接只是打开它并检查您的项目中的错误在哪里,然后在系统模拟器上测试它,如果没有错误发生,则在普通手机上运行。 这是链接:http://www.vogella.com/articles/AndroidGoogleMaps/article.html