forked from honeynet/droidbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spawn.json
65 lines (65 loc) · 1.69 KB
/
spawn.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
{
"views": {
"frm_weather": {
"resource_id": ".*frm_weather",
"class": ".*LinearLayout"
},
"frm_mylocation": {
"resource_id": ".*frm_mylocation",
"class": ".*LinearLayout"
},
"frm_cities": {
"resource_id": ".*frm_cities",
"class": ".*LinearLayout"
},
"frm_map": {
"resource_id": ".*frm_map",
"class": ".*LinearLayout"
},
"frm_about": {
"resource_id": ".*frm_about",
"class": ".*LinearLayout"
},
"frm_settings": {
"resource_id": ".*frm_settings",
"class": ".*LinearLayout"
}
},
"states": {
"home_state": {
"views": ["frm_weather", "frm_mylocation", "frm_cities",
"frm_map", "frm_about", "frm_settings"]
}
},
"operations": {
"home_spawn_operation": [
{
"event_type": "spawn",
"target_view": "frm_weather"
},
{
"event_type": "spawn",
"target_view": "frm_mylocation"
},
{
"event_type": "spawn",
"target_view": "frm_cities"
},
{
"event_type": "spawn",
"target_view": "frm_settings"
},
{
"event_type": "spawn",
"target_view": "frm_about"
},
{
"event_type": "touch",
"target_view": "frm_map"
}
]
},
"main": {
"home_state": ["home_spawn_operation"]
}
}