Skip to content

Instantly share code, notes, and snippets.

@SupersonicGist
Created August 12, 2015 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SupersonicGist/1a634a520295f2776b2c to your computer and use it in GitHub Desktop.
Save SupersonicGist/1a634a520295f2776b2c to your computer and use it in GitHub Desktop.
SDK 6 Android lifecycle
protected void onResume() {
super.onResume();
if (mMediationAgent != null) {
mMediationAgent.onResume (this);
}
}
protected void onPause() {
super.onPause();
if (mMediationAgent != null) {
mMediationAgent.onPause(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment