LevelPlay/IronSource
Initialization
- Go to the official Documentation page and integrate it into your project;
- In ProjectSettings, add define
LEVELPLAY_MEDIATOR
for your target platforms; - Initialize SDK and configure ApplovinMax-related fields in MagifySettings;
- After calling MagifyService.Initialize() use the MagifyService.UseEmbeddedLevelPlayMediator() and MagifyService.InitializeEmbeddedLevelPlayMediator() methods, which will instruct SDK to use
LevelPlayMediator
as the advertisement source:
MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.UseEmbeddedLevelPlayMediator()
.InitializeEmbeddedLevelPlayMediator();
OR
MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.UseEmbeddedLevelPlayMediator();
// wait for other services loading
MagifyService.InitializeEmbeddedLevelPlayMediator(testSuite: true); // pass true if you want to debug LevelPlay with test suite
Usage
You can use the LevelPlayMediator
class to load and display the necessary advertisements as you need.
However, you don't have to show all of your ads through it. If you already have ads in your application via ApplovinMax SDK, Magify SDK in conjunction with LevelPlayMediator
class will handle all the events that occur and collect the necessary data.
This class fully implements the IAdsMediator interface and provides basic control over advertising. However, we also provide some handy tools to simplify and improve your ad experience. For this purpose you can check Advertisement and Preloading.