Last active
November 5, 2015 10:10
-
-
Save PhilippKrone/26b674bf824912f96fd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
protected void onPause() { | |
super.onPause(); | |
if (mReactInstanceManager != null) { | |
mReactInstanceManager.onPause(); | |
} | |
} | |
@Override | |
protected void onResume() { | |
super.onResume(); | |
if (mReactInstanceManager != null) { | |
mReactInstanceManager.onResume(this); | |
} | |
} | |
@Override | |
protected void onStop() { | |
super.onStop(); | |
if (mReactInstanceManager != null) { | |
mReactInstanceManager.onPause(); | |
} | |
} | |
@Override | |
protected void onRestart() { | |
super.onRestart(); | |
if (mReactInstanceManager != null) { | |
mReactInstanceManager.onResume(this); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment