You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
858 B
29 lines
858 B
![]()
2 years ago
|
//
|
||
|
// EMASSecurityModeManager.h
|
||
|
// AlicloudUtils
|
||
|
//
|
||
|
// Created by junmo on 2018/3/10.
|
||
|
// Copyright © 2018年 Ali. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef EMASSecurityModeManager_h
|
||
|
#define EMASSecurityModeManager_h
|
||
|
|
||
|
#import "EMASSecurityModeCommon.h"
|
||
|
|
||
|
@interface EMASSecurityModeManager : NSObject
|
||
|
|
||
|
+ (instancetype)sharedInstance;
|
||
|
|
||
|
- (void)registerSDKComponentAndStartCheck:(NSString *)sdkId
|
||
|
sdkVersion:(NSString *)sdkVersion
|
||
|
appKey:(NSString *)appKey
|
||
|
appSecret:(NSString *)appSecret
|
||
|
sdkCrashThreshold:(NSUInteger)crashTimesThreshold
|
||
|
onSuccess:(SDKCheckSuccessHandler)successHandler
|
||
|
onCrash:(SDKCheckCrashHandler)crashHandler;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif /* EMASSecurityModeManager_h */
|