forked from gregoiresage/pebble-autoconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appinfo.json
77 lines (77 loc) · 1.76 KB
/
appinfo.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"uuid": "5a586ed0-0a6a-4dce-80e1-cabd67cf2a62",
"shortName": "pebble-autoconfig",
"longName": "Pebble Autoconfig",
"companyName": "Team Pebble Autoconfig",
"versionCode": 6,
"versionLabel": "1.3",
"watchapp": {
"watchface": false
},
"capabilities": [
"configurable"
],
"appKeys": {
"background": 0,
"direction": 1,
"length": 2,
"ipaddress": 3,
"mycolor": 4,
"ping": 100,
"pong": 102
},
"resources": {
"media": []
},
"preferences": {
"description": "This page is used to configure your <strong>Pebble Watch</strong>. Fill in the form and press <em>Save</em> to transfer the settings to your watch.",
"items" : [
{
"name": "background",
"title": "Colorized background",
"type": "boolean",
"default": true
},
{
"name": "direction",
"title": "Direction",
"description": "Where should we head?",
"type": "enum",
"choices": {
"NORTH": "North",
"EAST": "East",
"SOUTH": "South",
"WEST": "West"
},
"default": 2
},
{
"name": "length",
"title": "Length",
"description": "Between 0 and 100",
"type": "integer",
"min": 0,
"max": 1000,
"default": 17
},
{
"name": "ipaddress",
"title": "IP address",
"type": "string",
"max-length": 15,
"default": "127.0.0.12"
},
{
"name": "mycolor",
"title": "Color",
"type": "color",
"default": "0x00FF00"
}
]
},
"targetPlatforms": [
"aplite",
"basalt"
],
"sdkVersion": "3"
}