将自定义配置添加到 AndroidManifest.xml

Add custom config into AndroidManifest.xml

我正在使用 cordova 和一个第三方插件,AndroidManifest.xml 文件中缺少一个设置块。 我已经从 npm 检查了自定义配置,但仍然无法弄清楚如何将 config.xml 中的以下代码输入到 xml 文件中。

<receiver android:exported="true" android:name="com.appsflyer.MultipleInstallBroadcastReceiver">
<intent-filter>
    <action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>

问题是,这应该从 config.xml 读取并添加到每个平台擦除中。

您需要在 config.xml 中添加一个 <config-file> 块:

<widget>
    ...
    <platform name="android">
        ...
        <config-file target="AndroidManifest.xml" parent="/manifest/application">
            <receiver android:exported="true" android:name="com.appsflyer.MultipleInstallBroadcastReceiver"/>
            <intent-filter>
                <action android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
        </config-file>
    </platform>
</widget>

由于 cordova@8config.xml 支持 <config-file> 块(除了插件的 plugin.xml)。