Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dyte-in/DyteMobileCoreiOS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.25.4
Choose a base ref
...
head repository: dyte-in/DyteMobileCoreiOS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 8 additions and 7 deletions.
  1. +8 −7 Package.swift
15 changes: 8 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -2,27 +2,28 @@
import PackageDescription

// BEGIN KMMBRIDGE VARIABLES BLOCK (do not edit)
let remoteKotlinUrl = "https://github.com/dyte-in/DyteMobileCoreiOS/archive/refs/tags/1.25.3.zip"
let remoteKotlinChecksum = "9035d35f85523d3ed873217c185e6a6c200c18f13eb4156f017cc1460ff5d6f1"
let remoteKotlinUrl = "https://dyte-assets.s3.ap-south-1.amazonaws.com/sdk/ios_core/DyteiOSCore-2.1.0-ad6dd60e-06a1-43ca-a4d7-4d7cf3d85ef1.xcframework.zip"
let remoteKotlinChecksum = "76a818e81ff026698206a33e7817eaefcc23406d51b763a0dcea56d21766655c"
let packageName = "DyteiOSCore"
// END KMMBRIDGE BLOCK

let package = Package(
name: "DyteMobileCoreiOS",
platforms: [.iOS(.v13)],
products: [
.library(name: packageName, targets: [packageName, "WebRTC"])
.library(name: packageName, targets: [packageName, "DyteWebRTC"]),
],
targets: [
.binaryTarget(
name: "WebRTC",
url: "https://github.com/webrtc-sdk/Specs/releases/download/114.5735.02/WebRTC.xcframework.zip",
checksum: "c30668eac8f14a21cfb5612ca4e81b10e2d8d8d5e5231c00874ca118eff9a1c0"
name: "DyteWebRTC",
url: "https://dyte-assets.s3.ap-south-1.amazonaws.com/sdk/ios_core/DyteWebRTC_v0.0.4.zip",
checksum: "25318dfb4bd018fde6ed7fd3337d9aa1c62fc8b39ab985c60fa530eb3819e68a"
),
.binaryTarget(
name: packageName,
url: remoteKotlinUrl,
checksum: remoteKotlinChecksum
)
),
]
)