Ta android + ios
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// TAAppExtensionAnalytic.h
|
||||
// ThinkingSDK
|
||||
//
|
||||
// Created by Yangxiongon 2022/5/25.
|
||||
// Copyright © 2022 thinking. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/// key: event name in App Extension
|
||||
extern NSString * const kTAAppExtensionEventName;
|
||||
/// key: event properties in App Extension
|
||||
extern NSString * const kTAAppExtensionEventProperties;
|
||||
/// key: event properties
|
||||
extern NSString * const kTAAppExtensionTime;
|
||||
/// key: event properties
|
||||
extern NSString * const kTAAppExtensionEventPropertiesSource;
|
||||
|
||||
@interface TAAppExtensionAnalytic : NSObject
|
||||
|
||||
+ (void)calibrateTime:(NSTimeInterval)timestamp;
|
||||
|
||||
+ (void)calibrateTimeWithNtp:(NSString *)ntpServer;
|
||||
|
||||
/// Initialize an event collection object
|
||||
/// @param instanceName The unique identifier of the event collection object
|
||||
/// @param appGroupId share App Group ID
|
||||
+ (TAAppExtensionAnalytic *)analyticWithInstanceName:(NSString * _Nonnull)instanceName appGroupId:(NSString * _Nonnull)appGroupId;
|
||||
|
||||
/// write event
|
||||
/// @param eventName eventName
|
||||
/// @param properties properties
|
||||
/// @return Whether (YES/NO) write success
|
||||
- (BOOL)writeEvent:(NSString * _Nonnull)eventName properties:(NSDictionary * _Nullable)properties;
|
||||
|
||||
- (NSArray *)readAllEvents;
|
||||
|
||||
- (BOOL)deleteEvents;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user