-
-
Notifications
You must be signed in to change notification settings - Fork 197
Update plugins docs #1321
New issue
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
Update plugins docs #1321
Conversation
Test PASSed. |
@@ -35,11 +36,11 @@ If the NativeScript framework does not expose a native API that you need, you ca | |||
|
|||
* The plugin must be a valid npm package. | |||
* The plugin must expose a built-in native API or a native API available via custom native libraries. | |||
* The plugin must be written in JavaScript or TypeScript and must comply with the CommonJS specification. If written in TypeScript, make sure to include the compiled `JavaScript` file in your plugin. | |||
* The plugin must be written in JavaScript or TypeScript and must comply with the CommonJS specification. If written in TypeScript, make sure to include the compiled JavaScript file in your plugin. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We support Babel officially and the user can use any language which can compile to JavaScript. Consider expanding this statement to be more inclusive.
@teobugslayer Thank you for your comments. I've made a commit to address them 😄 |
Test PASSed. |
If there are linker errors after building, you may have to link with some native frameworks described in the CocoaPod documentation. See [`build.xcconfig` file](PLUGINS.md#buildxcconfig-specification) specification on how to do this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In case of post-build linker errors, you might need to resolve missing dependencies to native frameworks required by the installed CocoaPod. For more information about how to create the required links, see the build.xcconfig
specification.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed 😄
Test PASSed. |
👍 squash and merge. Excellent work! |
7d8e995
to
2012e12
Compare
Test PASSed. |
NativeScript/ios-jsc#427