Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d5e54 commit c8bb0d7Copy full SHA for c8bb0d7
packages/core/config/config.interface.ts
@@ -39,6 +39,20 @@ interface IConfigIOS extends IConfigPlatform {
39
* List packages to be included in the iOS build.
40
*/
41
SPMPackages?: Array<IOSSPMPackage>;
42
+ /**
43
+ * Include native source code from anywhere
44
+ */
45
+ NativeSource?: Array<{
46
47
+ * The folder name which will group these referenced files together in Xcode
48
49
+ name: string;
50
51
+ * The path to the native source code.
52
+ * You can also use glob patterns, including directories outside of the project root.
53
54
+ path: string;
55
+ }>;
56
}
57
58
interface IConfigVisionOS extends IConfigIOS {}
0 commit comments