AppLovin / AppLovin-MAX-SDK-iOS

84 stars 69 forks source link

How can I restrict the resuming of Applovin Appopen Ads showing in my app while trying to SignIn Apple #299

Open jesphinpt opened 2 months ago

jesphinpt commented 2 months ago

I am showing AppOpen Ads in my app. But the app shows the Applovin AppOpen ads when I am trying to login using Apple Sign In.

Is this the desired behavior? How can I restrict or override this behavior post Apple Sign In?

I am in Applovin version: 11.11.3 and now updated to 12.3.0.

I am seeing this issue with the 11.11.3 and didn't make any difference upgrading to 12.3.0.

self.appOpenAd.delegate = self;
            [sdk initializeSdkWithCompletionHandler:^(ALSdkConfiguration *configuration) {
                dispatch_async(dispatch_get_main_queue(), ^{
                    ALSdk *sdkm = [ALSdk shared];
                    sdkm.settings.muted = YES;
                    [strategy hideSplash];
                    [self goHome];
                    [self.appOpenAd loadAd];
                    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
                            [self showAdIfReady];
                    });

                });
            }];

CC: @thomasmso