@capgo/capacitor-realtimekit 8.0.29 → 8.0.30
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
|
@@ -25,6 +25,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/realtime
|
|
|
25
25
|
|
|
26
26
|
## Install
|
|
27
27
|
|
|
28
|
+
You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Then use the following prompt:
|
|
35
|
+
|
|
36
|
+
```text
|
|
37
|
+
Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-realtimekit` plugin in my project.
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
|
|
41
|
+
|
|
28
42
|
```bash
|
|
29
43
|
npm install @capgo/capacitor-realtimekit
|
|
30
44
|
npx cap sync
|
package/android/src/main/java/ee/forgr/plugin/capacitor_realtimekit/CapacitorRealtimekitPlugin.java
CHANGED
|
@@ -27,7 +27,7 @@ public class CapacitorRealtimekitPlugin extends Plugin {
|
|
|
27
27
|
|
|
28
28
|
private static final String TAG = "RealtimekitPlugin";
|
|
29
29
|
private static final String REALTIMEKIT_BASE_DOMAIN = "realtime.cloudflare.com";
|
|
30
|
-
private final String pluginVersion = "8.0.
|
|
30
|
+
private final String pluginVersion = "8.0.30";
|
|
31
31
|
private boolean isInitialized = false;
|
|
32
32
|
private PendingMeetingRequest pendingMeetingRequest;
|
|
33
33
|
|
|
@@ -7,7 +7,7 @@ import Capacitor
|
|
|
7
7
|
*/
|
|
8
8
|
@objc(CapacitorRealtimekitPlugin)
|
|
9
9
|
public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
10
|
-
private let pluginVersion: String = "8.0.
|
|
10
|
+
private let pluginVersion: String = "8.0.30"
|
|
11
11
|
public let identifier = "CapacitorRealtimekitPlugin"
|
|
12
12
|
public let jsName = "CapacitorRealtimekit"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED