-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
83 lines (76 loc) · 2.3 KB
/
nativephp.json
File metadata and controls
83 lines (76 loc) · 2.3 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "codingwithrk/double-back-to-close",
"namespace": "DoubleBackToClose",
"keywords": ["back", "exit", "close", "navigation"],
"category": "utilities",
"license": "MIT",
"pricing": {
"type": "free"
},
"author": {
"name": "CodingWithRK",
"email": "pappalarajkumar@gmail.com",
"url": ""
},
"homepage": "",
"repository": "",
"funding": [],
"platforms": [
"android",
"ios"
],
"screenshots": [],
"bridge_functions": [
{
"name": "DoubleBackToClose.Enable",
"android": "com.codingwithrk.plugins.double_back_to_close.DoubleBackToCloseFunctions.Enable",
"ios": "DoubleBackToCloseFunctions.Enable",
"description": "Enable double-back-to-close with a configurable toast message and timeout"
},
{
"name": "DoubleBackToClose.Disable",
"android": "com.codingwithrk.plugins.double_back_to_close.DoubleBackToCloseFunctions.Disable",
"ios": "DoubleBackToCloseFunctions.Disable",
"description": "Disable the double-back-to-close feature and remove the back press interceptor"
},
{
"name": "DoubleBackToClose.Configure",
"android": "com.codingwithrk.plugins.double_back_to_close.DoubleBackToCloseFunctions.Configure",
"ios": "DoubleBackToCloseFunctions.Configure",
"description": "Update the toast message and timeout without re-enabling"
}
],
"android": {
"min_version": 26,
"permissions": [],
"repositories": [],
"dependencies": {
"implementation": []
},
"activities": [],
"services": [],
"receivers": [],
"providers": []
},
"ios": {
"min_version": "18.2",
"permissions": [],
"repositories": [],
"dependencies": {
"swift_packages": [],
"pods": []
}
},
"assets": {
"android": [],
"ios": []
},
"secrets": [],
"events": [
"Codingwithrk\\DoubleBackToClose\\Events\\DoubleBackToCloseTriggered",
"Codingwithrk\\DoubleBackToClose\\Events\\AppExiting"
],
"hooks": {
"copy_assets": "nativephp:double-back-to-close:copy-assets"
}
}