-
I created a react-native library and the example app which works fine. However, I wish to add a native iOS library using SPM (since it's not on cocoapods). The react-native library created by CLI created just 3 files:
Why isn't there a |
Beta Was this translation helpful? Give feedback.
Answered by
atlj
Jan 17, 2024
Replies: 1 comment 19 replies
-
Hi, Swift Package Manager support for React Native is still in discussion. You can find the discussion here. |
Beta Was this translation helpful? Give feedback.
19 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Folks sorry if I will sound like a broken record 😅 but the normal development workflow for libraries actually include opening the example/ios workspace in xcode and changing the code there. In the past, people were trying to open the project file located in the ios folder and they were getting issues since it's not the correct way of doing it. If you open the example app, go to the Pods target and Development Pods, you'll find your library code in the list there. If you edit the library code there, the changes will be reflected to your library (you can check the git diff).