Skip to content

feat: lifecycle Method added for android - #73

Open
tjkang wants to merge 1 commit into
masterfrom
unknown repository
Open

feat: lifecycle Method added for android#73
tjkang wants to merge 1 commit into
masterfrom
unknown repository

Conversation

@tjkang

@tjkang tjkang commented Nov 30, 2020

Copy link
Copy Markdown

in MainActivity.java it should be added as below

import co.squaretwo.ironsource.RNIronSourceModule;
......
   @Override
    public void onResume() {
        super.onResume();
        RNIronSourceModule.onResume(this);
    }

    @Override
    public void onPause() {
        super.onPause();
        RNIronSourceModule.onPause(this);
    }
......

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant