mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
32 lines
810 B
Objective-C
32 lines
810 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "FIRAnalyticsConfiguration.h"
|
|
|
|
/**
|
|
* The log levels used by FIRConfiguration.
|
|
*/
|
|
typedef NS_ENUM(NSInteger, FIRLogLevel) {
|
|
kFIRLogLevelError = 0,
|
|
kFIRLogLevelWarning,
|
|
kFIRLogLevelInfo,
|
|
kFIRLogLevelDebug,
|
|
kFIRLogLevelAssert,
|
|
kFIRLogLevelMax = kFIRLogLevelAssert
|
|
};
|
|
|
|
/**
|
|
* This interface provides global level properties that the developer can tweak, and the singleton
|
|
* of each Google service configuration class.
|
|
*/
|
|
@interface FIRConfiguration : NSObject
|
|
|
|
+ (FIRConfiguration *)sharedInstance;
|
|
|
|
// The configuration class for Firebase Analytics.
|
|
@property(nonatomic, readwrite) FIRAnalyticsConfiguration *analyticsConfiguration;
|
|
|
|
// Global log level. Defaults to kFIRLogLevelError.
|
|
@property(nonatomic, readwrite, assign) FIRLogLevel logLevel;
|
|
|
|
@end
|