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
| // {
| // "name": "dyj",
| // "version": "1.0.0",
| // "description": "打印机插件",
| // "nativePlugins": {
| // "PrintPlugin": {
| // "android": "com.example.PrintPlugin"
| // }
| // }
| // }
|
|
| {
| "id": "dyj",
| "name": "USB 打印插件",
| "version": "1.0.0",
| "description": "USB 打印插件",
| "keywords": ["usb", "print", "plugin"],
| "platform": ["android"],
| "main": "android",
| "native": {
| "android": {
| "package": "com.example", // 插件对应的包名
| "class": "com.example.PrintPlugin" // 全限定类名,确保 Java 类与其一致
| }
| }
| }
|
|