Reputation: 73
Can we dynamically/problematically update the reactnative/android application without going to app store etc ?
Upvotes: 0
Views: 308
Reputation: 687
Yes, as your react native code is a bundled JavaScript file, this file can be served from anywhere. Although you can set this up yourself, the most popular service is CodePush created by Microsoft
https://github.com/Microsoft/react-native-code-push
Upvotes: 0
Reputation: 55
Yes definitely you can. Hot code push is the technique to dynamically update the app without forcing users to update the app from play store. Refer this:- https://github.com/Microsoft/react-native-code-push
Upvotes: 1