未找到 API 密钥

问题描述 投票:0回答:4
react-native api-key
4个回答
21
投票

在您的 AndroidManifest.xml 文件中添加以下内容:-

<meta-data
      android:name="com.google.android.geo.API_KEY"
      android:value="Your Google maps API Key Here"/>

然后再次运行react-native run-android,就可以了:)

编辑

您无法更改 android:name 中的文字“API_KEY”,请将 android:name 设置为

"com.google.android.geo.API_KEY"


3
投票

在 AndroidManifest.xml 中,将以下元素添加为该元素的子元素,方法是将其插入到结束标记之前:

<meta-data
    android:name="com.google.android.geo.API_KEY"
    android:value="YOUR_API_KEY"/>

请点击这里参考


3
投票

在 AndroidManifest.xml 中,添加以下元素作为应用程序的子元素: 应用程序名称 ndroid pp\src\main\AndroidManifest.xml:

  <application
  android:name=".MainApplication"
  android:label="@string/app_name"
  android:icon="@mipmap/ic_launcher"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:allowBackup="false"
  android:theme="@style/AppTheme">
  <meta-data
    android:name="com.google.android.geo.API_KEY"
    android:value="Your API Key Will be inserted here"/>
  <activity......

然后重建应用程序即可解决问题。 Snapshot of AndroidManifest.xml


0
投票
i have    <meta-data android:name="com.google.android.geo.API_KEY" android:value="Your Google maps API Key Here"/>
but its not working what can i do ?
© www.soinside.com 2019 - 2024. All rights reserved.