我正在构建一个插件,它包含了一些由更高功率提供的SDK。
我写了这样的话:
<framework src="path/to/static-lib.a" custom="true" />
Cordova在XCode Build Settings中设置了Framework Search Paths
这很酷,但似乎我需要的是Library Search Paths
。
我应该如何编写plugin.xml来添加这样的静态库?
答案 0 :(得分:18)
尝试
<source-file src="srcpath/to/static-lib.a" framework="true" />