Is super.onCreate(null) in RNFragment (extending ReactFragment) sufficient, removing the need for super.onCreate(null) in the host Activity? #3191
Replies: 2 comments
-
4.1.6 has been released yesterday and it changed the android setup, including the onCreate, check it because I think that it just address what you're looking for |
Beta Was this translation helpful? Give feedback.
0 replies
-
@coltonliang exactly what has been pointed above ☝🏻 We've changed installation instructions recently, in a manner that should address your concerns. Please, check them out. Btw. I'm far from being certain, but I believe calling |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using React Native for some views within an Android Activity. I have defined an RNFragment that inherits from ReactFragment.My question is: If I add super.onCreate(null); in the onCreate method of my RNFragment, is this sufficient? Does this mean I no longer need to add super.onCreate(null); in the onCreate method of the host Activity?
Beta Was this translation helpful? Give feedback.
All reactions