@capgo/capacitor-realtimekit 7.0.2 → 7.0.4
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
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<a href="https://capgo.app/"><img src='https://raw.githubusercontent.com/Cap-go/capgo/main/assets/capgo_banner.png' alt='Capgo - Instant updates for capacitor'/></a>
|
|
3
3
|
|
|
4
4
|
<div align="center">
|
|
5
|
-
<h2><a href="https://capgo.app/?ref=
|
|
6
|
-
<h2><a href="https://capgo.app/consulting/?ref=
|
|
5
|
+
<h2><a href="https://capgo.app/?ref=plugin_realtimekit"> ➡️ Get Instant updates for your App with Capgo</a></h2>
|
|
6
|
+
<h2><a href="https://capgo.app/consulting/?ref=plugin_realtimekit"> Missing a feature? We'll build the plugin for you 💪</a></h2>
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
9
|
Cloudflare Calls integration for Capacitor apps with built-in UI for meetings.
|
package/android/src/main/java/ee/forgr/plugin/capacitor_realtimekit/CapacitorRealtimekitPlugin.java
CHANGED
|
@@ -19,7 +19,7 @@ import com.getcapacitor.annotation.Permission;
|
|
|
19
19
|
public class CapacitorRealtimekitPlugin extends Plugin {
|
|
20
20
|
|
|
21
21
|
private static final String TAG = "RealtimekitPlugin";
|
|
22
|
-
private final String
|
|
22
|
+
private final String pluginVersion = "7.0.4";
|
|
23
23
|
private boolean isInitialized = false;
|
|
24
24
|
|
|
25
25
|
@Override
|
|
@@ -73,7 +73,7 @@ public class CapacitorRealtimekitPlugin extends Plugin {
|
|
|
73
73
|
public void getPluginVersion(final PluginCall call) {
|
|
74
74
|
try {
|
|
75
75
|
final JSObject ret = new JSObject();
|
|
76
|
-
ret.put("version", this.
|
|
76
|
+
ret.put("version", this.pluginVersion);
|
|
77
77
|
call.resolve(ret);
|
|
78
78
|
} catch (final Exception e) {
|
|
79
79
|
call.reject("Could not get plugin version", e);
|
|
@@ -7,7 +7,7 @@ import Capacitor
|
|
|
7
7
|
*/
|
|
8
8
|
@objc(CapacitorRealtimekitPlugin)
|
|
9
9
|
public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
10
|
-
private let
|
|
10
|
+
private let pluginVersion: String = "7.0.4"
|
|
11
11
|
public let identifier = "CapacitorRealtimekitPlugin"
|
|
12
12
|
public let jsName = "CapacitorRealtimekit"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|
|
@@ -46,7 +46,7 @@ public class CapacitorRealtimekitPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
@objc func getPluginVersion(_ call: CAPPluginCall) {
|
|
49
|
-
call.resolve(["version": self.
|
|
49
|
+
call.resolve(["version": self.pluginVersion])
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
}
|
package/package.json
CHANGED