找不到API密钥

时间:2017-08-06 18:03:42

标签: react-native api-key

我正在尝试使用React Native Maps但是当我执行react-native run-android时会这样做:

API key not found.  Check that <meta-data android:name="com.google.android.geo.API_KEY" android:value="your API key"/> is in the <application> element of AndroidManifest.xml

来自 AndroidManifest.xml 的<{1}}代码:

meta-data

我尝试重新启动打包器。

解决方案:<meta-data android:name="com.google.android.geo.maptest" android:value="A***Q" /> 是字面的,不应该更改。

2 个答案:

答案 0 :(得分:5)

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

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

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

修改

您无法更改文字&#34; API_KEY&#34;在android:name中,将android:name设置为"com.google.android.geo.API_KEY"

答案 1 :(得分:0)

  

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

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

please click here for reference