First I generate some android libraries dynamically whose contain an xml file in src/main/res/xml/config.xml which include library specific data.
Next, when I build my android application, with the generated libraries as depencencies, I would expect that the generated apk contains the xml config file merged with all librairies xml config files, but it doesn't.
Plugins Android manifests are merged in one file, is there something to do to make it work the same for xml files ? Is this even actually possible ?
Each plugin has a config file which contain for example:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<plugins>
<feature name="Plugin1">
<param name="package" value="com.example.Plugin1"/>
</feature>
</plugins>
and I would expect that the apk contains the xml config file with the content, for 3 plugins:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<plugins>
<feature name="Plugin1">
<param name="package" value="com.example.Plugin1"/>
</feature>
<feature name="Plugin2">
<param name="package" value="com.example.Plugin2"/>
</feature>
<feature name="Plugin3">
<param name="package" value="com.example.Plugin3"/>
</feature>
</plugins>
Thanks