-
Notifications
You must be signed in to change notification settings - Fork 2
Native projects
Dmitry Usik edited this page Apr 3, 2022
·
4 revisions
If you are going to use bare react-native
then your project will contain native ios
and android
projects. Basically, the native projects will be used for different configurations. But despite the fact that they won't contain a lot of the code, it does make sense to keep them clean and tidy.
Try to follow the next recommendations:
- Always add native code with
Xcode
andAndroid Studio
. It'll show you somewarnings
anderrors
; - Try not to keep unused or commented code;
- Format the code in order to keep the code standards;
- Try to follow the best practices for the native platforms while are working with the native projects.