I'm currently working on Swift Package Manager project and I need to use images (myImage
) I put in my custom XCAssets (CoreUI.xcassets
). I have included my XCAssets in the SPM resources like this.
targets: [
.target(
name: "MyCoreUI",
dependencies: [],
resources: [Resource.process("Resources/CoreUI.xcassets")]),
.testTarget(
name: "MyCoreUITests",
dependencies: ["MyCoreUI"]),
]
I accessed my image like this:
UIImage(named: "dropdown_down", in: Bundle.module, compatibleWith: nil)
But my image still failed to load without any warning. Could anyone help me with this issue? Thank you in advance!
I was facing the same issue while accessing the image in the swift package manager. I fixed that issue by taking care of the following points.
As per apple developer We don't need to process XIB, Storyboard, Assets Catalog, Core Data files .xcdatamodel and .lproj. So we don't need any special configuration on .package file.
I kept a root folder inside the Sources/MyPackage. Please check my directory structure as shown in the
.
My Media.xcassets catalog have one image icon named
ic_patient
. I am able to access that with the following SwiftUI code:Image("ic_patient", bundle: Bundle.module)
It's working fine.