Survey Callbacks for Android

Covered here is how to set up the callback that fires before and after every survey is shown for your Android apps.

Avoiding Memory Leaks

You can execute code in a callback that gets called before a survey is shown and after it has been dismissed. You can use this for things like pausing and resuming a game, for example.

Before Showing the Survey

Surveys.setOnShowCallback(OnShowCallback {
                //Pause game
            }            
        )

After the Survey Has Been Dismissed

Surveys.setOnFinishCallback(OnFinishCallback {
            }
        )

Last updated