Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected Broken AppOpen AdUnitId. #378

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ - (void)loadAd {
}
_isLoadingAd = YES;
NSLog(@"Start loading app open ad.");
[GADAppOpenAd loadWithAdUnitID:@"ca-app-pub-3940256099942544/5662855259"
[GADAppOpenAd loadWithAdUnitID:@"ca-app-pub-3940256099942544/5575463023"
request:[GADRequest request]
orientation:UIInterfaceOrientationPortrait
completionHandler:^(GADAppOpenAd * _Nullable appOpenAd, NSError * _Nullable error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AppOpenAdManager: NSObject {
isLoadingAd = true
print("Start loading app open ad.")
GADAppOpenAd.load(
withAdUnitID: "ca-app-pub-3940256099942544/5662855259",
withAdUnitID: "ca-app-pub-3940256099942544/5575463023",
request: GADRequest(),
orientation: UIInterfaceOrientation.portrait
) { ad, error in
Expand Down
Loading