-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnativephp.json
More file actions
30 lines (30 loc) · 736 Bytes
/
Copy pathnativephp.json
File metadata and controls
30 lines (30 loc) · 736 Bytes
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
{
"namespace": "{{ plugin }}",
"bridge_functions": [
{
"name": "{{ plugin }}.Example",
"android": "com.{{ vendor }}.{{ package }}.{{ plugin }}Functions.Example",
"ios": "{{ plugin }}Functions.Example",
"description": "{{ description }}"
}
],
"android": {
"min_version": 26,
"permissions": [],
"dependencies": {
"implementation": []
},
"features": []
},
"ios": {
"min_version": "18.2",
"info_plist": {},
"dependencies": {
"swift_packages": [],
"pods": []
}
},
"events": [
"{{ namespace }}\\Events\\{{ plugin }}Event"
]
}