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
| {
| "name": "rfid",
| "id": "rfid",
| "version": "1.0.0",
| "description": "My rfid Plugin",
| "_dp_type": "nativeplugin",
| "_dp_nativeplugin": {
| "android": {
| "plugins": [{
| "type": "module",
| "name": "RFIDModule",
| "class": "com.handheld.rfid.RFIDModule"
| }],
| "resources": [
| "res/raw/barcodebeep",
| "res/raw/beeps",
| "res/raw/beeps"
| ],
| "integrateType": "aar",
| "minSdkVersion": 26,
| "gradleOptions": {
| // 正确语法
| "packagingOptions": "pickFirst 'lib/**/libModuleAPIJni.so'",
|
| // 排除重复依赖
| "dependencies": {
| "exclude": ["com.uhf.api.cls:ModuleAPI_J"]
| }
| }
| }
|
| }
| }
|
| }
| }
|
|