我目前在我的自定义 cordova 插件中有这段代码,
<framework src="src/ios/Frameworks/XXX.framework" custom="true" embed="true"/>
<framework src="src/ios/Frameworks/XXXFramework.framework" custom="true" embed="true"/>
当我用 cordova 构建 ios 时,它只会进入嵌入式二进制文件,而不会进入链接的框架和库。我希望将这两个框架都导入链接和嵌入部分。
请引用下图:
Image
如有任何帮助,我们将不胜感激。
Best Answer-推荐答案 strong>
要将库添加到 Xcode 中的“嵌入式二进制文件”部分(从 cordova-ios 4.4.0 和 cordova 7.0.0 开始),将其放入您的 plugin.xml 中:
<framework src="src/ios/XXX.framework" embed="true" custom="true" />
要将库添加到 Xcode 中的“链接的框架和库”部分,
将其放入您的 plugin.xml 中:
<source-file src="src/ios/XXX.framework" target-dir="lib" framework="true" />
两者可以同时存在。例如:
<platform name="ios">
....
<source-file src="src/ios/XXX.m"/>
<source-file src="src/ios/XXX.framework" target-dir="lib" framework="true" />
<framework src="src/ios/XXX.framework" embed="true" custom="true" />
....
</platform>
关于ios - 将自定义 cordova 插件添加到 IOS XCode 中的链接和嵌入框架,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/48203243/
|