正如我所提到的,我试图在我的项目中使用两个不同的Google API&#s; 第一个是Google GeoLoaction Api,第二个是AutoComplete Api。 问题是,它们都需要应用程序元数据中Manifest.xml的键,但是当我尝试添加两者时,第二个键覆盖第一个键。
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MapsActivity">
<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.geo.API_KEY"
android:value="@string/google_maps_key" />
</application>
我还尝试在我的值中添加另一个字符串,它也不起作用。
答案 0 :(得分:1)
Autocomplete
和GeoLocation
Api可以与相同的Api密钥一起使用。您只需要在Manifest
中添加一次密钥。您只需要启用所需的Api密钥。 Google Developer Console