-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnativephp.json
More file actions
74 lines (74 loc) · 1.66 KB
/
nativephp.json
File metadata and controls
74 lines (74 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
72
73
74
{
"name": "codingwithrk/package-info",
"version": "1.0.0",
"description": "A NativePHP Mobile plugin provides an API for querying information about an application package.",
"namespace": "PackageInfo",
"keywords": [
"package",
"info",
"app",
"version",
"build",
"metadata"
],
"category": "utilities",
"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": "PackageInfo.GetInfo",
"android": "com.codingwithrk.plugins.package_info.PackageInfoFunctions.GetInfo",
"ios": "PackageInfoFunctions.GetInfo",
"description": "Retrieve application package information (name, version, build number, installer store)"
}
],
"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\\PackageInfo\\Events\\PackageInfoRetrieved"
],
"service_provider": "Codingwithrk\\PackageInfo\\PackageInfoServiceProvider",
"hooks": {
"copy_assets": "nativephp:package-info:copy-assets"
}
}