我正在写一个cordova ios plugin
,我设法plugin.xml
正确设置文件以便工作并将我的插件导入项目中
cordova plugin add myplugin --searchpath=path/to/my/plugin --save
命令。我现在想做的是将所有插件文件分组到一个文件夹中。
例如,拥有这 2 个文件(来自 的片段plugin.xml
)
...
<source-file src="src/ios/MyPlugin.m" />
<source-file src="src/ios/MyPlugin.h" />
...
我想将它们分组到 MyPlugin 文件夹下,在 iOS 项目 Plugins 文件夹中:
MY_PROJECT
|-- www/
|-- Staging/
|-- Classes/
|-- Plugins/
| |-- MyPlugin/ <!-- HERE -->
| | |-- MyPlugin.m
| | |-- MyPlugin.h
| |-- SomeOtherPlugin.m
| |-- Foo.h
|-- Other Sources/
|-- Resources/
|-- Framework/
|-- Products/
现在,cordova 的 CLI 插件管理器似乎将任何插件文件放入 Plugins 文件夹中,尽管它们属于插件。
有什么相当于Android的target-dir
iOS属性吗?有什么提示吗?
提前致谢