在android设备中单击列表时出现此错误。附上清单错误和哨兵报告。
如果需要更新AndroidManifest.xml ..我在我的源码中发现了很多AndroidManifest.xml。
我尝试在android清单file..but中添加代码,我发现有太多的文件
我正在使用codecanyon“Listapp”中的模板
发布于 2019-08-07 14:23:08
您需要将your API key添加到AndroidManifest.xml文件(通常位于app\src\main)的<application>元素中,如错误消息所示。
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY"/>希望这能有所帮助。
发布于 2019-08-27 22:06:51
在元数据标签中,它必须是:
<application>
<!-- You will only need to add this meta-data tag, but make sure it's a child of application -->
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="Your Google maps API Key Here"/>
</application>https://stackoverflow.com/questions/57351234
复制相似问题