Some times Xcode can not determine the module parameter in the Bundle.
Type \'Bundle\' has no member \'module\'
My inve
SPM generates the resource_bundle_accessor only if the corresponding target contains resources as the argument like:
.target(
name: "ChenzookKit",
dependencies: ["Apollo"],
resources: [.process("Resources")] // <- `copy` or `process` deson't really matter
),
Also, note that it should be a valid resource path.
The project MUST actaully contains Resources inside the target's Directory!