Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yurii-glia committed Oct 30, 2023
0 parents commit 2155bc8
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "GliaSDK",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "GliaSDK",
targets: ["GliaSDK"])
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-dependencies", .upToNextMajor(from: "1.0.0"))
],
targets: [
.binaryTarget(
name: "GliaCoreDependency",
url: "https://github.com/salemove/ios-bundle/releases/download/0.35.0/GliaCoreDependency.xcframework.zip",
checksum: "8e1746da612dad8a130fd872b3058511121b7c6f29e3b0351ecbbffa96971489"
),
.binaryTarget(
name: "TwilioVoice",
url: "https://github.com/salemove/ios-bundle/releases/download/0.33.0/TwilioVoice.xcframework.zip",
checksum: "34288e0876a8840fa51d3813046cf1f40a5939079bea23ace5afe6e752f12f9e"
),
.binaryTarget(
name: "WebRTC",
url: "https://github.com/salemove/ios-bundle/releases/download/0.33.0/WebRTC.xcframework.zip",
checksum: "f76e410f608d96989ba0312e099697703a37b4414f8f46bb9e30c3d9b4291a52"
),
.binaryTarget(
name: "GliaCoreSDK",
url: "https://github.com/yurii-glia/pub/releases/download/1.0/GliaCoreSDK.xcframework.zip",
checksum: "d9c15e0fae3accb3a1318a3680e876fa89a25c3f099ed330cb5a7443a5269f85"
),
.target(
name: "GliaSDK",
dependencies: [
"GliaCoreSDK",
"GliaCoreDependency",
"TwilioVoice",
"WebRTC",
.product(name: "Dependencies", package: "swift-dependencies")
]
)
]
)
Empty file added Sources/GliaSDK/GliaSDK.swift
Empty file.

0 comments on commit 2155bc8

Please sign in to comment.