Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
pwilkniss committed Mar 9, 2022
0 parents commit 64568e3
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CTSoftPhone.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Pod::Spec.new do |s|
s.name = "CTSoftPhone"
s.version = '0.0.1-alpha'
s.summary = "Basic PJSUA wrapper enabling iOS voip calling"
s.homepage = "https://github.com/CleverTap/ctsoftphone"
s.source = { :http => "https://github.com/CleverTap/CTSoftPhone/releases/download/#{s.version}/CTSoftPhone.xcframework.zip" }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.author = { "CleverTap" => "http://www.clevertap.com" }
s.module_name = 'CTSoftPhone'

s.platform = :ios, '10.0'
s.ios.deployment_target = '10.0'

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}

s.ios.frameworks = 'Foundation', 'UIKit', 'Security', 'CoreGraphics', 'CoreImage', 'CoreFoundation', 'AVFoundation', 'AudioToolbox', 'VideoToolbox'
s.vendored_frameworks = 'CTSoftPhone.xcframework'

end
23 changes: 23 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "CTSoftPhone",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "CTSoftPhone",
targets: ["CTSoftPhone"]
)
],
targets: [
.binaryTarget(
name: "CTSoftPhone",
url: "https://github.com/CleverTap/CTSoftPhone/releases/download/0.0.1-alpha/CTSoftPhone.xcframework.zip",
checksum: "953ac142ce06cf0df2fcbe19e2b9381c426380001a6a762eb12f4b3021933c65"
)
]
)
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CTSoftPhone

0 comments on commit 64568e3

Please sign in to comment.