GoogleUserMessagingPlatform Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
-
UMPDebugSettings is a class in Objective-C for overriding settings for debugging or testing.
-
The testDeviceIdentifiers property is an array of device identifier strings that enable debug features for the specified devices.
-
The geography property is a setting for specifying the debug geography.
UMPDebugSettings
@interface UMPDebugSettings : NSObject <NSCopying>
Overrides settings for debugging or testing.
-
Array of device identifier strings. Debug features are enabled for devices with these identifiers. Debug features are always enabled for simulators.
Declaration
Swift
var testDeviceIdentifiers: [String]? { get set }
Objective-C
@property (nonatomic, copy, nullable) NSArray<NSString *> *testDeviceIdentifiers;
-
Debug geography.
Declaration
Swift
var geography: DebugGeography { get set }
Objective-C
@property (nonatomic) UMPDebugGeography geography;