Jean-Claude YALAP
Jean-Claude YALAP

Reputation: 255

react-native reload js programmatically on android native

Is there a way to reload the javascript programmatically on android as in the menu?

React-native android menu

I would like to do so directly in Native Java

Upvotes: 2

Views: 1127

Answers (1)

Jean-Claude YALAP
Jean-Claude YALAP

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

Related Questions