From 4b30c10cef62c07efa1faf8a21e296b4a23ff591 Mon Sep 17 00:00:00 2001 From: lpw <812862340@qq.com> Date: Wed, 15 Jul 2026 09:35:30 +0800 Subject: [PATCH] 提交版本 4.13.0 --- frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h b/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h index 6ccde97..e2b3ebe 100644 --- a/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h +++ b/frameworks/GoogleMobileAds.xcframework/ios-arm64_x86_64-simulator/GoogleMobileAds.framework/Headers/GADAudioVideoManagerDelegate.h @@ -17,14 +17,17 @@ /// Tells the delegate that the Google Mobile Ads SDK will start playing a video. This method isn't /// called if another video rendered by Google Mobile Ads SDK is already playing. -- (void)audioVideoManagerWillPlayVideo:(nonnull GADAudioVideoManager *)audioVideoManager; +- (void)audioVideoManagerWillPlayVideo:(nonnull GADAudioVideoManager *)audioVideoManager + NS_SWIFT_UI_ACTOR; /// Tells the delegate that the Google Mobile Ads SDK has paused/stopped all video playback. -- (void)audioVideoManagerDidPauseAllVideo:(nonnull GADAudioVideoManager *)audioVideoManager; +- (void)audioVideoManagerDidPauseAllVideo:(nonnull GADAudioVideoManager *)audioVideoManager + NS_SWIFT_UI_ACTOR; /// Tells the delegate that at least one video rendered by the Google Mobile Ads SDK will play /// sound. Your app should stop playing sound when this method is called. -- (void)audioVideoManagerWillPlayAudio:(nonnull GADAudioVideoManager *)audioVideoManager; +- (void)audioVideoManagerWillPlayAudio:(nonnull GADAudioVideoManager *)audioVideoManager + NS_SWIFT_UI_ACTOR; /// Tells the delegate that all the video rendered by the Google Mobile Ads SDK has stopped playing /// sound. Your app can now resume any music playback or produce any kind of sound. Note that this @@ -32,6 +35,7 @@ /// deactivate AVAudioSession's instance. Doing so can lead to unexpected video playback behavior. /// You may deactivate AVAudioSession only when all rendered video ads are paused or have finished /// playing, and 'audioVideoDidPauseAllVideo:' is called. -- (void)audioVideoManagerDidStopPlayingAudio:(nonnull GADAudioVideoManager *)audioVideoManager; +- (void)audioVideoManagerDidStopPlayingAudio:(nonnull GADAudioVideoManager *)audioVideoManager + NS_SWIFT_UI_ACTOR; @end -- Gitblit v1.8.0