add 友盟统计
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
//
|
||||
// EnvExport.h
|
||||
// SecurityEnvTest
|
||||
//
|
||||
// Created by asherli on 17/9/1.
|
||||
// Copyright © 2017年 alibaba. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef EnvExport_h
|
||||
#define EnvExport_h
|
||||
|
||||
#define SEC_ERROR_UMID_OK 0
|
||||
#define SEC_ERROR_UMID_UNKNOWN_ERR 1
|
||||
|
||||
#endif /* EnvExport_h */
|
||||
Generated
+21
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// ISecurityEnvInitListener.h
|
||||
// SecurityEnvSDK
|
||||
//
|
||||
// Created by asherli on 17/9/1.
|
||||
// Copyright © 2017年 alibaba. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef SECURITYENV_ISECURITY_ENV_INITLISTENER_H
|
||||
#define SECURITYENV_ISECURITY_ENV_INITLISTENER_H
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#include "EnvExport.h"
|
||||
|
||||
@interface ISecurityEnvInitListener : NSObject
|
||||
|
||||
- (void) onUMIDInitFinished : (const char *) strToken : (int) status;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SECURITYENV_ISECURITY_ENV_INITLISTENER_H */
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// SecurityEnvSDK.h
|
||||
// SecurityGuardMain
|
||||
//
|
||||
// Created by asherli on 2017/07/12.
|
||||
// Copyright © 2016年 alibaba. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef SECURITYENV_SECURITY_ENV_SDK_H
|
||||
#define SECURITYENV_SECURITY_ENV_SDK_H
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "ISecurityEnvInitListener.h"
|
||||
|
||||
@interface SecurityEnvSDK : NSObject
|
||||
|
||||
- (NSInteger) initSync;
|
||||
|
||||
- (void) initASync : (ISecurityEnvInitListener *) listener;
|
||||
|
||||
- (NSString*) getToken;
|
||||
|
||||
// build by mtl
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SECURITYENV_SECURITY_ENV_SDK_H */
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.alimobilesec.SecurityEnvSDK</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>SecurityEnvSDK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
framework module SecurityEnvSDK {
|
||||
umbrella header "SecurityEnvSDK.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
||||
BIN
Binary file not shown.
Reference in New Issue
Block a user