I have added a .mlmodelc in my swift playground.
And I am facing 2 errors:
"multiple resources named 'metadata.json' in target 'AppModule'. "
and
"multiple resources named 'coremldata.bin' in target 'AppModule' "
How can I resolve this?
Post
Replies
Boosts
Views
Activity
How to link binary resources folder in package.swift file from Swift Playgrounds. Given that I cant manually edit the package.swift file. How do I navigate to resolve this?
Currently, my targets looks like this:
targets: [
.executableTarget(
name: "AppModule",
path: "."
)
]
I would like to link the resources folder like this:
targets: [
.executableTarget(
name: "AppModule",
path: ".",
resources: [
.process("Resources")
]
)
]
Playground Version: 4.3
Please let me know.
I am few hours away from the swift student challenge submission.
Kindly acknowledge.
PLEASE HELP!!!