React-native错误:也在[:@ react-native-firebase_admob] AndroidManifest.xml:18:13-29

问题描述

在安装react-native-firebase_admob之后,我将清单文件的值更改为:

 <application>
   ******
   <meta-data  android:name="com.google.android.gms.ads.APPLICATION_ID"
                android:value="ca-app-pub-4247389872422093~1957443376"/>

然后出现此错误:

FAILURE: Build failed with an exception.

* What went wrong:

Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : 
           Attribute meta-data#com.google.android.gms.ads.APPLICATION_ID@value
           value=(ca-app-pub-4247389872422023~1957443376)
           from AndroidManifest.xml:30:78-132

is also present at
           [:@react-native-firebase_admob] AndroidManifest.xml:18:13-29
           value=().

Suggestion: add 'tools:replace="android:value"' to <meta-data> element at AndroidManifest.xml:30:9-134
to override.

解决方法

只需遵循建议即可。


<application>
   ******
<meta-data  android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="ca-app-pub-4247389872422093~1957443376"
            tools:replace="android:value"/>
,

这是解决方法:

<manifest ... xmlns:tools="http://schemas.android.com/tools">
    <application>
       ...
       <meta-data  android:name="com.google.android.gms.ads.APPLICATION_ID"
                   android:value="ca-app-pub-4247389872422093~1957443376"
                   tools:replace="android:value"/>

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...