No such module error when using an external library with Cocoapod #430
Answered
by
amsdamsgram
amsdamsgram
asked this question in
Q&A
-
Hi, I'm trying to use a pod in my RN library but I'm getting "No such module error" in XCode. This is what I did:
I also tried to Am I missing something? Thank you for your help! |
Beta Was this translation helpful? Give feedback.
Answered by
amsdamsgram
Aug 2, 2023
Replies: 1 comment 2 replies
-
Hey you don't have to init the pod by yourself. It's already included with native libraries. If you are trying to add a third party dependency to your library, you can add it to your You should be able to add a dependency to your
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I finally made it work!
I've imported a
xcframework
file instead of using a pod and addeds.vendored_frameworks = 'ios/myFramework.xcframework'
in.podspec
file as you mentionned.Thanks for your help!