blob: f30e2d5989fcc8172bd699668950022dae22b20a (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// SDLDeviceInfo.h
//
#import "SDLRPCMessage.h"
NS_ASSUME_NONNULL_BEGIN
/**
Various information about connecting device. Referenced in RegisterAppInterface
*/
@interface SDLDeviceInfo : SDLRPCStruct
/// Convenience init. Object will contain all information about the connected device automatically.
///
/// @return An SDLDeviceInfo object
+ (instancetype)currentDevice;
/**
Device model
Optional
*/
@property (nullable, strong, nonatomic) NSString *hardware;
/**
Device firmware version
Optional
*/
@property (nullable, strong, nonatomic) NSString *firmwareRev;
/**
Device OS
Optional
*/
@property (nullable, strong, nonatomic) NSString *os;
/**
Device OS version
Optional
*/
@property (nullable, strong, nonatomic) NSString *osVersion;
/**
Device mobile carrier
Optional
*/
@property (nullable, strong, nonatomic) NSString *carrier;
/**
Number of bluetooth RFCOMM ports available.
Omitted if not connected via BT or on iOS
Optional
*/
@property (nullable, strong, nonatomic) NSNumber<SDLInt> *maxNumberRFCOMMPorts;
@end
NS_ASSUME_NONNULL_END
|