@capgo/capacitor-realtimekit 8.0.24 → 8.0.26
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/CapgoCapacitorRealtimekit.podspec +1 -1
- package/Package.swift +2 -2
- package/README.md +1 -1
- package/android/src/main/java/ee/forgr/plugin/capacitor_realtimekit/CapacitorRealtimekitPlugin.java +1 -1
- package/ios/Sources/CapacitorRealtimekitPlugin/CapacitorRealtimekitPlugin.swift +1 -1
- package/package.json +1 -1
|
@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.swift_version = '5.1'
|
|
17
17
|
|
|
18
18
|
# Cloudflare RealtimeKit SDK - Note: This requires adding the podspec repo
|
|
19
|
-
# pod 'RealtimeKitCore', :git => 'https://github.com/
|
|
19
|
+
# pod 'RealtimeKitCore', :git => 'https://github.com/cloudflare/realtimekit-ios-core.git'
|
|
20
20
|
end
|
package/Package.swift
CHANGED
|
@@ -12,7 +12,7 @@ let package = Package(
|
|
|
12
12
|
dependencies: [
|
|
13
13
|
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"),
|
|
14
14
|
.package(url: "https://github.com/dyte-in/RealtimeKitCoreiOS.git", from: "1.6.1"),
|
|
15
|
-
.package(url: "https://github.com/
|
|
15
|
+
.package(url: "https://github.com/cloudflare/realtimekit-ios-ui.git", from: "0.5.3")
|
|
16
16
|
],
|
|
17
17
|
targets: [
|
|
18
18
|
.target(
|
|
@@ -21,7 +21,7 @@ let package = Package(
|
|
|
21
21
|
.product(name: "Capacitor", package: "capacitor-swift-pm"),
|
|
22
22
|
.product(name: "Cordova", package: "capacitor-swift-pm"),
|
|
23
23
|
.product(name: "RealtimeKit", package: "RealtimeKitCoreiOS"),
|
|
24
|
-
.product(name: "RealtimeKitUI", package: "
|
|
24
|
+
.product(name: "RealtimeKitUI", package: "realtimekit-ios-ui")
|
|
25
25
|
],
|
|
26
26
|
path: "ios/Sources/CapacitorRealtimekitPlugin"),
|
|
27
27
|
.testTarget(
|
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ npx cap sync
|
|
|
34
34
|
|
|
35
35
|
This plugin uses the Cloudflare RealtimeKit SDK:
|
|
36
36
|
|
|
37
|
-
- **iOS**: [
|
|
37
|
+
- **iOS**: [realtimekit-ios-ui](https://github.com/cloudflare/realtimekit-ios-ui) plus its matching RealtimeKit core dependency (automatically installed via Swift Package Manager)
|
|
38
38
|
- **Android**: `com.cloudflare.realtimekit:ui-android` version `0.2.2` (can be customized via gradle variable `realtimekitUiVersion`)
|
|
39
39
|
|
|
40
40
|
### Customizing Android RealtimeKit Version
|
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.26";
|
|
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.26"
|
|
11
11
|
public let identifier = "CapacitorRealtimekitPlugin"
|
|
12
12
|
public let jsName = "CapacitorRealtimekit"
|
|
13
13
|
public let pluginMethods: [CAPPluginMethod] = [
|
package/package.json
CHANGED