22 lines
449 B
Objective-C
22 lines
449 B
Objective-C
//
|
|
// FirebaseSDK.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by GuiX on 2021/8/25.
|
|
//
|
|
|
|
#ifndef FirebaseSDK_h
|
|
#define FirebaseSDK_h
|
|
|
|
@interface FirebaseSDK : NSObject
|
|
|
|
+(FirebaseSDK*)getInstance;
|
|
-(void)initialize;
|
|
-(void)setUserPropertyString:(NSString*)value forName:(NSString*)name;
|
|
-(void)logEventWithName:(NSString*)eventName parameters:(NSDictionary*)parameters;
|
|
-(void)logCrash:(NSString*)key stack:(NSString*)stack;
|
|
|
|
@end
|
|
|
|
#endif /* FirebaseSDK_h */
|