我正在尝试发布我的应用,但谷歌地图有问题。 该应用程序包含一个显示地图的活动(MapActivity)。在调试模式下运行时,地图工作正常。 我在发布模式下签署了我的应用程序,并获得了SHA1。 我根据需要在Google控制台上创建了一个新的Android密钥(SHA1; packageName)。获得API密钥
在我的应用程序中,我根据需要引用了google-play-services-lib的副本。 我正在使用ADT。
map.xml
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment" />
MapActivity.java
public class MapActivity extends FragmentActivity {
private GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map);
map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap();
}
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.rentalcar"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<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.ACCESS_NETWORK_STATE" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<permission
android:name="com.example.rentalcar.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.example.rentalcar.permission.MAPS_RECEIVE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name="com.example.rentalcar.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.rentalcar.MapActivity"
android:label="@string/title_activity_map"
android:screenOrientation="portrait" >
</activity>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="My_Key"/>
</application>
</manifest>
唯一奇怪的是,当我使用keytool获取SHA1时,我得到了#34;签名算法名称:SHA256withRSA。这可能是问题吗?如果是,我该如何更改?
我有点被困在这里!谢谢你的帮助!
答案 0 :(得分:12)
如果你已经尝试过@Budius回答但仍然面临此错误,则可能是由以下情况引起的:
当您添加MapFragment时,Android Studio会创建2个文件google_maps_api.xml:一个位于src / debug / res / values文件夹中,另一个位于src / release / res / values中。
但由于某些原因,只有调试文件夹文件显示在Android Studio上。因此,当您更改APIkey值时,它仅在调试文件夹文件中完成。
因此,只需将google_maps_api.xml文件复制到release文件夹,并确保两者都使用相同的APIKey。
在所有其他尝试之后,这对我有用。答案 1 :(得分:10)
在地图API V2中,在发布版本和调试版本之间发生变化的 ONLY 是您在此处注册的密钥https://code.google.com/apis/console/
如果调试正在进行且最终版本没有,那么这是唯一必要的更改。
因此,我建议您仔细检查发布密钥库的哈希码,并确保在Google API控制台上正确输入。
答案 2 :(得分:1)
自最近几天以来,我也面临着同样的问题,我花了大约2-3天的时间才弄清问题所在。 您需要在2个位置添加API密钥 app / src / debug / res / values / google_maps_api.xml 和其他 app / src / release / res / values / google_maps_api.xml 中的
。您可以在项目模式下(而不是在Android /应用程序模式下)找到 release / google_maps_api.xml 。
答案 3 :(得分:0)
只需清除数据(设置 - &gt;应用 - 选择应用 - 清除数据 - >卸载)然后尝试。这对我有用。 确保程序包名称与google developer Console中的程序包名称相同。 如果您是自定义密钥库中创建的SHA1代码,则在发布模式下使用相同的代码。或者通过使用相同的密钥库进行签名来生成apk。
答案 4 :(得分:0)
1-使用项目“Android Manifest”文件中的“使用导出向导”创建apk文件。
2-插入键后,在完成之前,显示的MD5和SHA1键如图所示 -
3-为第2点中检索到的新SHA1创建Android项目的新API密钥。
4-在清单文件中使用该API密钥,如下所示
5-清理项目并再次构建APK文件。
6-你现在可以在那个apk中看到谷歌地图。
答案 5 :(得分:0)
答案 6 :(得分:0)
我遇到了同样的问题...我已经将gogole_maps_api.xml文件放到release / res / values文件夹中了...但是API_KEY里面是空的!!
在此处也复制了API密钥之后,所有这些都可以在调试模式下以及发行版中完美运行!! 感谢Sumit Sinha的建议