Skip to content

Commit

Permalink
feat: make SPM packages references locally in config
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Sep 16, 2023
1 parent f649064 commit 54954c8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions nativescript.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,21 @@ export default {
android: {
v8Flags: '--expose_gc',
markingMode: 'none'
},
ios: {
SPMPackages: [
{
name: 'RealityKitContent',
libs: ['RealityKitContent'],
// @ts-ignore
path: './Packages/RealityKitContent'
},
{
name: 'WorldAssets',
libs: ['WorldAssets'],
// @ts-ignore
path: './Packages/WorldAssets'
},
]
}
} as NativeScriptConfig;

0 comments on commit 54954c8

Please sign in to comment.