From 1e5242aa56dd1c52c537335ee56d7127d09b24de Mon Sep 17 00:00:00 2001 From: lpw <812862340@qq.com> Date: Thu, 11 Sep 2025 09:19:08 +0800 Subject: [PATCH] 提交版本 4.7.0 --- WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequest.h | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequest.h b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequest.h index fdea95d..1c4557e 100644 --- a/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequest.h +++ b/WAAdmobImpl/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequest.h @@ -12,6 +12,7 @@ #import <UIKit/UIKit.h> /// Specifies optional parameters for ad requests. +NS_SWIFT_NAME(Request) @interface GADRequest : NSObject <NSCopying> /// Returns a default request. @@ -53,7 +54,12 @@ /// URL strings for non-primary web content near an ad. Promotes brand safety and allows displayed /// ads to have an app level rating (MA, T, PG, etc) that is more appropriate to neighboring /// content. -@property(nonatomic, copy, nullable) NSArray<NSString *> *neighboringContentURLStrings; +@property(nonatomic, copy, nullable) + NSArray<NSString *> *neighboringContentURLStrings NS_SWIFT_NAME(neighboringContentURLs); + +/// An identifier for a placement in reporting. A value set here will be set onto any ad returned by +/// this request. +@property(atomic, readwrite) int64_t placementID; #pragma mark Request Agent Information @@ -63,4 +69,9 @@ /// Mobile Ads SDK should set this property as "CoolAds". @property(nonatomic, copy, nullable) NSString *requestAgent; +#pragma mark Optional Targeting Information + +/// Key-value pairs used for custom targeting. +@property(nonatomic, copy, nullable) NSDictionary<NSString *, id> *customTargeting; + @end -- Gitblit v1.8.0