Update Mobile App Dynamically
I have worked in mobile space for majority of my career and one thing that I always wanted to achieve was to fix bugs and send crucial updates on a fly. We can do that in websites which makes development of new features fast and bugs don’t hurt the business that much = Happy Customers, we all know that is not the case with mobile apps. Enters React Native which not only lets you build beautiful apps with native look and feel for both Android and IOS but because its JavaScript we can even bundle our new releases and configure our app to query and download these bundles from our servers to update/add new features without prompting our users to download an update. How does it work? If you have worked on React Native you know that we can reflect code changes on devices just by enabling hot reload from the developer menu. So there is a mechanism that loads a bundle, updates the files and re renders the screen with the changes. We just need to provide the bundle...