-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnativephp.json
More file actions
39 lines (35 loc) · 931 Bytes
/
nativephp.json
File metadata and controls
39 lines (35 loc) · 931 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
31
32
33
34
35
36
37
38
39
{
"namespace": "Dialog",
"bridge_functions": [
{
"name": "Dialog.Alert",
"android": "com.nativephp.dialog.DialogFunctions.Alert",
"ios": "DialogFunctions.Alert",
"description": "Show a native alert dialog with custom buttons"
},
{
"name": "Dialog.Toast",
"android": "com.nativephp.dialog.DialogFunctions.Toast",
"ios": "DialogFunctions.Toast",
"description": "Show a toast notification"
}
],
"android": {
"min_version": 33,
"permissions": [],
"dependencies": {
"implementation": []
}
},
"ios": {
"min_version": "18.2",
"info_plist": {},
"dependencies": {
"swift_packages": [],
"pods": []
}
},
"events": [
"Native\\Mobile\\Events\\Alert\\ButtonPressed"
]
}