-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
105 lines (105 loc) · 3.25 KB
/
nativephp.json
File metadata and controls
105 lines (105 loc) · 3.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "codingwithrk/no-screenshot",
"version": "1.0.0",
"description": "A NativePHP Mobile plugin that prevents screenshots, blocks screen recording and global protection in App-switch state in your mobile app.",
"namespace": "NoScreenshot",
"keywords": [
"screenshot",
"screen-recording",
"security",
"privacy",
"protection"
],
"category": "security",
"license": "MIT",
"pricing": {
"type": "free"
},
"author": {
"name": "CodingwithRK",
"email": "pappalarajkumar@gmail.com",
"url": "https://codingwithrk.com"
},
"homepage": "",
"repository": "",
"funding": [],
"platforms": [
"android",
"ios"
],
"icon": "resources/icon.png",
"screenshots": [],
"bridge_functions": [
{
"name": "NoScreenshot.DisableGlobal",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.DisableGlobal",
"ios": "NoScreenshotFunctions.DisableGlobal",
"description": "Block screenshots and screen recording for the entire app"
},
{
"name": "NoScreenshot.EnableGlobal",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.EnableGlobal",
"ios": "NoScreenshotFunctions.EnableGlobal",
"description": "Allow screenshots and screen recording app-wide"
},
{
"name": "NoScreenshot.GetStatus",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.GetStatus",
"ios": "NoScreenshotFunctions.GetStatus",
"description": "Return the current protection status and screen-recording state"
},
{
"name": "NoScreenshot.Toggle",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.Toggle",
"ios": "NoScreenshotFunctions.Toggle",
"description": "Toggle global screenshot and screen-recording protection on/off"
},
{
"name": "NoScreenshot.StartScreenshotDetection",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.StartScreenshotDetection",
"ios": "NoScreenshotFunctions.StartScreenshotDetection",
"description": "Start detecting screenshot events and fire ScreenshotAttempted when one is taken"
},
{
"name": "NoScreenshot.StopScreenshotDetection",
"android": "com.codingwithrk.plugins.no_screenshot.NoScreenshotFunctions.StopScreenshotDetection",
"ios": "NoScreenshotFunctions.StopScreenshotDetection",
"description": "Stop detecting screenshot events"
}
],
"android": {
"min_version": "21",
"permissions": [],
"repositories": [],
"dependencies": {
"implementation": []
},
"activities": [],
"services": [],
"receivers": [],
"providers": []
},
"ios": {
"min_version": "13.0",
"permissions": [],
"repositories": [],
"dependencies": {
"swift_packages": [],
"pods": []
}
},
"assets": {
"android": [],
"ios": []
},
"secrets": [],
"events": [
"Codingwithrk\\NoScreenshot\\Events\\ScreenshotAttempted",
"Codingwithrk\\NoScreenshot\\Events\\ScreenRecordingStarted",
"Codingwithrk\\NoScreenshot\\Events\\ScreenRecordingStopped"
],
"service_provider": "Codingwithrk\\NoScreenshot\\NoScreenshotServiceProvider",
"hooks": {
"copy_assets": "nativephp:no-screenshot:copy-assets"
}
}