Reputation: 255
Is there a way to reload the javascript programmatically on android as in the menu?
I would like to do so directly in Native Java
Upvotes: 2
Views: 1127
Reputation: 255
So i found the solution by checking in the code directly.
In the class who extends from ReactActivity call this :
getReactNativeHost().getReactInstanceManager()
.getDevSupportManager().handleReloadJS();
Upvotes: 5