blob: dccb813e4149c34fe4216dda3b5d083ad0bc3bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//
// SDKInfo.h
// iHealthSDKStatic
//
// Created by Lei Bao on 2017/10/19.
// Copyright © 2017年 ihealthSDK. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
SDKInfo
*/
@interface SDKInfo : NSObject
/**
Get sdk version
@return sdk version
*/
+ (NSString *)version;
/**
Get sdk uuid. It will change with every App's installation
@return sdk uuid (128-bit)
*/
+ (NSString *)uuid;
@end
|