How do I dynamically run a React Native app inside another React Native app? -


can done besides basic integration of code? ideally, rn app should able dynamically download bundle of nested app server. should execute bundle inside kind of customized root in view. should have basic life cycle control on nested app. technically possible?

you looking codepush.

the root component of application have wrapped codepush's higher-order component:

import codepush "react-native-code-push";  class myapp extends component { }  myapp = codepush(myapp); 

then can release js bundle updates time cli:

code-push release-react <appname> <platform> 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -