Call Android activity from React-Native code
I am using REACT-NATIVE to build android app. I want to call android activity from React-Native code. (say when I clicked the button in my react native code, it should call android activity) I have 4 class files MainActivity.java (created by react-native when opened in android studio) MainApplication.java (created by react-native) Login.java (android activity file) Example.java (android activity file) Want to achieve following flow: Login.java -> React-Native js -> Example.java I already went through following links, but unable to understand https://stackoverflow.com/a/32825290/4849554 Similar