-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-manifest-screen.json
More file actions
71 lines (71 loc) · 1.66 KB
/
plugin-manifest-screen.json
File metadata and controls
71 lines (71 loc) · 1.66 KB
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
{
"api": {
"require_startup_execution": false,
"class_name": "PrehookExample.HookManager",
"modules": []
},
"dependency_repository_url": [],
"author_name": "Alex Zchut",
"author_email": "a.zchut@applicaster.com",
"manifest_version": "3.0.0",
"name": "Prehook Example Hook Screen",
"description": "Example prehook plugin",
"identifier": "hook_screen",
"type": "general",
"platform": "ios",
"ui_builder_support": true,
"min_zapp_sdk": "13.0.0-Dev",
"dependency_name": "PrehookExample",
"dependency_version": "3.0.0",
"whitelisted_account_ids": [
"57d7bee06466610018000000",
"5c20970320f1c500088842dd",
"572a0a65373163000b000000",
"5a364b49e03b2f000d51a0de",
"5a4516fa41442c000b0195d6"
],
"react_native": false,
"screen": true,
"deprecated_since_zapp_sdk": "",
"unsupported_since_zapp_sdk": "",
"preload": true,
"styles": {
"fields": [
{
"type": "tag_select",
"key": "presentation",
"tooltip_text": "Presentation style",
"options": [
{
"text": "Push",
"value": "push"
},
{
"text": "Present",
"value": "present"
}
],
"initial_value": "push"
}
]
},
"general": {
"fields": [
{
"type": "switch",
"key": "is_flow_blocker",
"tooltip_text": "Define if hook will block flow in case cancelation",
"initial_value": false
},
{
"type": "switch",
"key": "allow_screen_plugin_presentation",
"tooltip_text": "Define if",
"initial_value": false
}
]
},
"targets": [
"mobile"
]
}