I have been using code-push in production for more than 2 years.
How I implemented?
- Whenever android folder of my react native app was modified, I assumed there is a native change and my CI/CD tool created a native apk file.
- In all other cases, I generated an JS bundle and pushed via CodePush.
In the latest RN version >=0.60, we have auto-linking of native modules. Because of this, I am not able to identify if any library newly added requires a native APK to be generated or just a bundle update.
Please provide suggestion how can this be done?
Environment
react-native-code-push version: 6.0.0
react-native version: 0.61.4