We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I want to add some native ios package as a dependency. It should go into the Embedded Binaries section.
Embedded Binaries
However if I open the lib created with react-native-create-library I can't see the General section where Embedded Binaries is in.
react-native-create-library
General
If I create a normal react native app react-native init and open the xcode projcet I see the general section.
react-native init
The text was updated successfully, but these errors were encountered:
the library would be embedded into the app and not the other way around.
You can dismiss the xcworkspace that comes with react-native-create-library.
For your app just put my-library under dependencies in its package.json then run react-native link after that you should be able to run your code.
my-library
package.json
react-native link
Otherwise you can refer to the guide here https://facebook.github.io/react-native/docs/native-modules-ios
Sorry, something went wrong.
No branches or pull requests
Hi
I want to add some native ios package as a dependency.
It should go into the
Embedded Binaries
section.However if I open the lib created with
react-native-create-library
I can't see theGeneral
section whereEmbedded Binaries
is in.If I create a normal react native app
react-native init
and open the xcode projcet I see the general section.The text was updated successfully, but these errors were encountered: