The builder uses the IOS_MANIFEST_EXTENSIONS.XML file for iOS only. The file grants the builder the right to use the frameworks required by the add-in. This file is optional. If it is not available, no changes are applied to the manifest file.
The following is an example manifest extension file:
<?xml version="1.0" encoding="UTF-8"?> <root> <Additions> <framework name="System/Library/Frameworks/CoreMotion.framework"/> <framework name="usr/lib/libgll.dylib"/> </Additions> </root>
The first line is a standard XML header. The second line contains the <root> tag.
You can only add data to the <Additions> tag.
The name="..." attributes of <framework> tags store framework names and paths.