From 7c666378d77fc1746cb089c273a4bacfad995356 Mon Sep 17 00:00:00 2001 From: lpw <812862340@qq.com> Date: Thu, 11 Sep 2025 09:04:13 +0800 Subject: [PATCH] 提交版本 4.7.0 --- frameworks/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequestError.h | 70 ++++++++++++++++------------------ 1 files changed, 33 insertions(+), 37 deletions(-) diff --git a/frameworks/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequestError.h b/frameworks/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequestError.h index e1e4691..2e64a15 100644 --- a/frameworks/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequestError.h +++ b/frameworks/GoogleMobileAds.xcframework/ios-arm64/GoogleMobileAds.framework/Headers/GADRequestError.h @@ -9,55 +9,51 @@ #import <GoogleMobileAds/GoogleMobileAdsDefines.h> /// Google AdMob Ads error domain. -FOUNDATION_EXPORT NSString *_Nonnull const GADErrorDomain; +FOUNDATION_EXPORT NSErrorDomain _Nonnull const GADErrorDomain; /// NSError codes for GAD error domain. -typedef NS_ENUM(NSInteger, GADErrorCode) { - /// The ad request is invalid. The localizedFailureReason error description will have more - /// details. Typically this is because the ad did not have the ad unit ID or root view - /// controller set. - GADErrorInvalidRequest = 0, +typedef NS_ERROR_ENUM(GADErrorDomain, GADErrorCode){ + /// The ad request is invalid. The localizedFailureReason error description will have more + /// details. Typically this is because the ad did not have the ad unit ID or root view + /// controller set. + GADErrorInvalidRequest = 0, - /// The ad request was successful, but no ad was returned. - GADErrorNoFill = 1, + /// The ad request was successful, but no ad was returned. + GADErrorNoFill = 1, - /// There was an error loading data from the network. - GADErrorNetworkError = 2, + /// There was an error loading data from the network. + GADErrorNetworkError = 2, - /// The ad server experienced a failure processing the request. - GADErrorServerError = 3, + /// The ad server experienced a failure processing the request. + GADErrorServerError = 3, - /// The current device's OS is below the minimum required version. - GADErrorOSVersionTooLow = 4, + /// The current device's OS is below the minimum required version. + GADErrorOSVersionTooLow = 4, - /// The request was unable to be loaded before being timed out. - GADErrorTimeout = 5, + /// The request was unable to be loaded before being timed out. + GADErrorTimeout = 5, - /// The mediation response was invalid. - GADErrorMediationDataError = 7, + /// The mediation response was invalid. + GADErrorMediationDataError = 7, - /// Error finding or creating a mediation ad network adapter. - GADErrorMediationAdapterError = 8, + /// Error finding or creating a mediation ad network adapter. + GADErrorMediationAdapterError = 8, - /// Attempting to pass an invalid ad size to an adapter. - GADErrorMediationInvalidAdSize = 10, + /// Attempting to pass an invalid ad size to an adapter. + GADErrorMediationInvalidAdSize = 10, - /// Internal error. - GADErrorInternalError = 11, + /// Internal error. + GADErrorInternalError = 11, - /// Invalid argument error. - GADErrorInvalidArgument = 12, + /// Invalid argument error. + GADErrorInvalidArgument = 12, - /// Received invalid response. - GADErrorReceivedInvalidResponse = 13, + /// Will not send request because the ad object has already been used. + GADErrorAdAlreadyUsed = 19, - /// A mediation ad network adapter received an ad request, but did not fill. The adapter's error - /// is included as an underlyingError. - GADErrorMediationNoFill = 9, + /// Will not send request because the application identifier is missing. + GADErrorApplicationIdentifierMissing = 20, - /// Will not send request because the ad object has already been used. - GADErrorAdAlreadyUsed = 19, - - /// Will not send request because the application identifier is missing. - GADErrorApplicationIdentifierMissing = 20, -}; + /// Received invalid ad string. + GADErrorReceivedInvalidAdString = 21, +} NS_SWIFT_NAME(RequestError); -- Gitblit v1.8.0