-
Hey, thanks so much for this library, it really rocks! I have a problem that I just cannot seem to solve: Showing All Messages I've tried editing the Package.swift file to exclude this file in targets: [.target()], and the changes register in Xcode, but the warning doesn't go away. I feel like there's something obvious I'm missing, but Google-fu has failed me. Anyone have an idea of what to do here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Ok, I was able to find a solution to this issue. In targets: [ .target( exclude: , add "Info.plist" to the array, this defaults to the top level of the package folder, where the offending file is. Then, restart Xcode. Xcode didn't register the changes until it was restarted, even though it was showing the edit before the restart. Rebuild, et voila. Hopefully, this helps someone else. |
Beta Was this translation helpful? Give feedback.
Ok, I was able to find a solution to this issue. In targets: [ .target( exclude: , add "Info.plist" to the array, this defaults to the top level of the package folder, where the offending file is. Then, restart Xcode. Xcode didn't register the changes until it was restarted, even though it was showing the edit before the restart. Rebuild, et voila. Hopefully, this helps someone else.