私が言及したように、私は自分のプロジェクトで 2 つの異なる Google API を使用しようとしていました.1 つ目はGoogle GeoLoaction Apiで、2 つ目はAutoComplete Apiです。問題は、両方ともアプリケーション メタデータの Manifest.xml にキーが必要ですが、両方を追加しようとすると、2 番目のキーが最初のキーをオーバーライドすることです。
<?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>
また、値に別の文字列を追加しようとしましたが、うまくいきませんでした。