💡Tips
To reduce the time it takes for the SDK to retrieve strategies during the first launch after app installation and to avoid scenarios where SDK strategy retrieval fails, we have introduced a feature that supports apps pre-setting strategies locally.
(1) Introduce the exported file into your project.
(2) Simply call the following code before initiating ad loading to set it up. Example as follows:
MCInitConfig *config = [[MCInitConfig alloc] init];
config.defaultStrategyPath = [[NSBundle mainBundle] pathForResource:@"DefaultAppSettings" ofType:nil];
[[MCAPI sharedInstance] initWithConfig:config delegate:self];