lpw
2026-07-16 807b36e8edef2c70145d394422251e02d0a2d534
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  GADRequest_Beta.h
//  Google Mobile Ads SDK
//
//  Copyright 2026 Google LLC. All rights reserved.
//
 
#import <GoogleMobileAds/GADRequest.h>
 
@interface GADRequest (Beta)
 
#pragma mark Mediation Adapters
 
/// If YES, the SDK will not attempt to load an ad from adapters that have not been initialized.
/// This is useful for apps that have a large number of adapters that are not used in the app, and
/// that take a long time to initialize.
///
/// Defaults to NO, the SDK will attempt to initialize
/// adapters on the first request attempt if they have not been initialized before.
@property(nonatomic) BOOL shouldSkipUninitializedAdapters NS_SWIFT_NAME(skipUninitializedAdapters);
 
@end