ApplovinMax
Initialization
- Go to the official MAX Mediation Documentation page and integrate it into your project;
- In ProjectSettings, add define
MAX_ADS_MEDIATOR
for your target platforms; - Initialize SDK and configure ApplovinMax-related fields in MagifySettings;
- After calling MagifyService.Initialize() use the MagifyService.UseEmbeddedMaxMediator() and MagifyService.InitializeEmbeddedMaxMediator() methods, which will instruct SDK to use
MaxMediator
as the advertisement source:
MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.UseEmbeddedMaxMediator()
.InitializeEmbeddedMaxMediator();
OR
MagifyService.Initialize(_magifySettings, _magifyServiceArgs)
.UseEmbeddedMaxMediator();
// wait for other services loading
MagifyService.InitializeEmbeddedMaxMediator();
Usage
You can use the MaxMediator
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 MaxMediator
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.