@simplysm/capacitor-plugin-usb-storage 13.0.16 → 13.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -9,18 +9,6 @@ pnpm add @simplysm/capacitor-plugin-usb-storage
|
|
|
9
9
|
npx cap sync
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
### Peer Dependencies
|
|
13
|
-
|
|
14
|
-
| Package | Version |
|
|
15
|
-
|--------|------|
|
|
16
|
-
| `@capacitor/core` | `^7.4.4` |
|
|
17
|
-
|
|
18
|
-
### Internal Dependencies
|
|
19
|
-
|
|
20
|
-
| Package | Description |
|
|
21
|
-
|--------|------|
|
|
22
|
-
| `@simplysm/core-common` | Common utilities such as Base64 conversion, `Bytes` type |
|
|
23
|
-
|
|
24
12
|
## Supported Platforms
|
|
25
13
|
|
|
26
14
|
| Platform | Supported | Implementation |
|
|
@@ -35,7 +23,7 @@ npx cap sync
|
|
|
35
23
|
- `minSdk`: 23 (Android 6.0 or higher)
|
|
36
24
|
- Maximum file read size: 100MB
|
|
37
25
|
|
|
38
|
-
## Main
|
|
26
|
+
## Main Modules
|
|
39
27
|
|
|
40
28
|
### UsbStorage (Static Class)
|
|
41
29
|
|
|
@@ -260,6 +248,20 @@ The Android native layer uses the `libaums` library to directly handle the USB M
|
|
|
260
248
|
- **File System Access**: Mounts the file system of the first partition to perform directory navigation and file reading.
|
|
261
249
|
- **Data Transfer**: File data is Base64-encoded for transmission to the JavaScript layer.
|
|
262
250
|
|
|
251
|
+
## Dependencies
|
|
252
|
+
|
|
253
|
+
### Peer Dependencies
|
|
254
|
+
|
|
255
|
+
| Package | Version |
|
|
256
|
+
|--------|------|
|
|
257
|
+
| `@capacitor/core` | `^7.4.4` |
|
|
258
|
+
|
|
259
|
+
### Internal Dependencies
|
|
260
|
+
|
|
261
|
+
| Package | Description |
|
|
262
|
+
|--------|------|
|
|
263
|
+
| `@simplysm/core-common` | Common utilities such as Base64 conversion, `Bytes` type |
|
|
264
|
+
|
|
263
265
|
## License
|
|
264
266
|
|
|
265
267
|
MIT
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC"}
|
package/dist/index.js.map
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/capacitor-plugin-usb-storage",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.20",
|
|
4
4
|
"description": "심플리즘 패키지 - Capacitor USB Storage Plugin",
|
|
5
5
|
"author": "김석래",
|
|
6
|
+
"license": "MIT",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "https://github.com/kslhunter/simplysm.git",
|
|
9
10
|
"directory": "packages/capacitor-plugin-usb-storage"
|
|
10
11
|
},
|
|
11
|
-
"license": "MIT",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"main": "./dist/index.js",
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"android"
|
|
18
18
|
],
|
|
19
|
-
"capacitor": {
|
|
20
|
-
"android": {
|
|
21
|
-
"src": "android"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
19
|
"dependencies": {
|
|
25
|
-
"@simplysm/core-common": "13.0.
|
|
20
|
+
"@simplysm/core-common": "13.0.20"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@capacitor/core": "^7.5.0"
|
|
26
24
|
},
|
|
27
25
|
"peerDependencies": {
|
|
28
26
|
"@capacitor/core": "^7.4.4"
|
|
29
27
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
28
|
+
"capacitor": {
|
|
29
|
+
"android": {
|
|
30
|
+
"src": "android"
|
|
31
|
+
}
|
|
32
32
|
}
|
|
33
33
|
}
|