@simplysm/capacitor-plugin-broadcast 13.0.15 → 13.0.18

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 CHANGED
@@ -11,14 +11,6 @@ npm install @simplysm/capacitor-plugin-broadcast
11
11
  npx cap sync
12
12
  ```
13
13
 
14
- ### Requirements
15
-
16
- | Item | Version |
17
- |------|------|
18
- | `@capacitor/core` | `^7.4.4` |
19
- | Android `minSdk` | 23 |
20
- | Android `compileSdk` | 35 |
21
-
22
14
  ## Supported Platforms
23
15
 
24
16
  | Platform | Supported | Notes |
@@ -27,7 +19,7 @@ npx cap sync
27
19
  | iOS | No | Not supported |
28
20
  | Web | Partial | Stub implementation (outputs warning messages, no actual functionality) |
29
21
 
30
- ## Main API
22
+ ## Main Modules
31
23
 
32
24
  ### `Broadcast` Class
33
25
 
@@ -245,6 +237,14 @@ The types of values that can be included in `extras` when calling `send()`, and
245
237
  - On Android 13 (API 33, Tiramisu) and above, receivers are registered using the `RECEIVER_EXPORTED` flag.
246
238
  - To prevent memory leaks, it is recommended to unregister receivers that are no longer needed using the returned unsubscribe function or `unsubscribeAll()`.
247
239
 
240
+ ## Dependencies
241
+
242
+ ### Peer Dependencies
243
+
244
+ | Package | Version |
245
+ |--------|------|
246
+ | `@capacitor/core` | `^7.4.4` |
247
+
248
248
  ## License
249
249
 
250
250
  MIT
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC"}
package/dist/index.js.map CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;",
4
+ "mappings": "AACA,cAAc;AACd,cAAc;",
5
5
  "names": []
6
6
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@simplysm/capacitor-plugin-broadcast",
3
- "version": "13.0.15",
3
+ "version": "13.0.18",
4
4
  "description": "심플리즘 패키지 - Capacitor Broadcast 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-broadcast"
10
11
  },
11
- "license": "MIT",
12
12
  "type": "module",
13
13
  "main": "./dist/index.js",
14
14
  "types": "./dist/index.d.ts",
@@ -16,15 +16,15 @@
16
16
  "dist",
17
17
  "android"
18
18
  ],
19
- "capacitor": {
20
- "android": {
21
- "src": "android"
22
- }
19
+ "devDependencies": {
20
+ "@capacitor/core": "^7.5.0"
23
21
  },
24
22
  "peerDependencies": {
25
23
  "@capacitor/core": "^7.4.4"
26
24
  },
27
- "devDependencies": {
28
- "@capacitor/core": "^7.5.0"
25
+ "capacitor": {
26
+ "android": {
27
+ "src": "android"
28
+ }
29
29
  }
30
30
  }