@capgo/capacitor-realtimekit 8.0.21 → 8.0.25

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.
@@ -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/dyte-in/RealtimeKitCoreiOS.git'
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/dyte-in/RealtimeKitUI.git", from: "0.5.3")
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: "RealtimeKitUI")
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**: [RealtimeKitCoreiOS](https://github.com/dyte-in/RealtimeKitCoreiOS) (automatically installed via Swift Package Manager)
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
@@ -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.21";
30
+ private final String pluginVersion = "8.0.25";
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.21"
10
+ private let pluginVersion: String = "8.0.25"
11
11
  public let identifier = "CapacitorRealtimekitPlugin"
12
12
  public let jsName = "CapacitorRealtimekit"
13
13
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-realtimekit",
3
- "version": "8.0.21",
3
+ "version": "8.0.25",
4
4
  "description": "Cloudflare Calls integration for Capacitor apps with built-in UI for meetings.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",