How would I go about adding Carthage dependencies to the swift UI component package I am authoring? #294
Replies: 2 comments
-
So I gather that I need to add my xcframeworks to my podspec file. The pod install works, but gives me a lot of warnings. (Too many to show apparently, it crashes the ruby script). |
Beta Was this translation helpful? Give feedback.
-
Are you able to spot if the pod install warnings start with something like "[!] [Xcodeproj] Generated duplicate UUIDs"? |
Beta Was this translation helpful? Give feedback.
-
Ask your Question
I need to build a wrapper around dependencies that are only available as Carthage dependencies. I have successfully added them to a standard tvOS swift project.
I added a cartfile in the same way as in my swift project, but this time in the iOS folder of the actual react-native package I am authoring. Here, carthage updates and builds the dependencies correctly, but they do not compile. There is no way to add the generated xc-frameworks to the package's Xcode project file (there are no options to add frameworks in the package project, only in the embedded example project.
Does anyone have any suggestion on how to proceed with this?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions