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

时间:2018-11-26 15:24:50

标签: cordova ionic-framework ionic3 cordova-plugins appsflyer-cordova-sdk

我正在使用cordova和一个第三方插件,该插件在AndroidManifest.xml文件中缺少一些设置。 我已经从npm检查了custom-config,但是仍然不知道如何从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中读取并添加到每个平台擦除中。

1 个答案:

答案 0 :(得分:0)

您需要在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@8起,<config-file>支持config.xml块(插件的plugin.xml除外)。