我正在使用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中读取并添加到每个平台擦除中。
答案 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
除外)。