Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

MobileAds binding for registerWebView #602

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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions source/Google/MobileAds/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using ObjCRuntime;
using StoreKit;
using UIKit;
using WebKit;

#if !NET
using NativeHandle = System.IntPtr;
Expand Down Expand Up @@ -117,6 +118,10 @@ interface MobileAds {
// - (void)presentAdInspectorFromViewController:(nonnull UIViewController *)viewController completionHandler: (nullable GADAdInspectorCompletionHandler)completionHandler;
[Export ("presentAdInspectorFromViewController:viewController:")]
void PresentAdInspectorFromViewController (UIViewController viewConroller, AdInspectorCompletionHandler completionHandler);

// - (void)registerWebView:(nonnull WKWebView *)webView;
[Export ("registerWebView:")]
void RegisterWebView (WKWebView webView);
}

// @interface GADMultipleAdsAdLoaderOptions : GADAdLoaderOptions
Expand Down