We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c6d8c commit 30677e7Copy full SHA for 30677e7
docs/IntegrationWithExistingApps.md
@@ -651,7 +651,7 @@ protected void onPause() {
651
super.onPause();
652
653
if (mReactInstanceManager != null) {
654
- mReactInstanceManager.onHostPause();
+ mReactInstanceManager.onPause();
655
}
656
657
@@ -660,7 +660,7 @@ protected void onResume() {
660
super.onResume();
661
662
663
- mReactInstanceManager.onHostResume(this, this);
+ mReactInstanceManager.onResume(this, this);
664
665
666
@@ -669,7 +669,7 @@ protected void onDestroy() {
669
super.onDestroy();
670
671
672
- mReactInstanceManager.onHostDestroy();
+ mReactInstanceManager.onDestroy();
673
674
675
```
0 commit comments