在您的 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"
在 AndroidManifest.xml 中,将以下元素添加为该元素的子元素,方法是将其插入到结束标记之前:
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY"/>
在 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......
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 ?