-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPagecall.podspec
44 lines (36 loc) · 2.01 KB
/
Pagecall.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Be sure to run `pod lib lint Pagecall.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Pagecall'
s.version = '0.0.27' # Update `version` field of PagecallWebView as you change this
s.summary = 'Pagecall WebView: Enhanced Voice Communication via Custom WebView based on WKWebView'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = 'Pagecall-ios-sdk provides PagecallWebView, a custom WebView based on WKWebView that extends its functionality by adding a proprietary JavaScript Bridge to improve voice communication features. This enables customers to offer an enhanced voice communication experience. By utilizing PagecallWebView, powerful voice communication features can be easily integrated in place of the existing WKWebView.'
s.homepage = 'https://github.com/pagecall/pagecall-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'author' => '[email protected]' }
s.source = { :git => 'https://github.com/pagecall/pagecall-ios-sdk.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.swift_version = '5.0'
s.vendored_frameworks = [
'Binaries/Mediasoup.xcframework',
'Binaries/WebRTC.xcframework'
]
s.source_files = 'Sources/PagecallSDK/**/*.{swift,h,m}'
s.resource = 'Sources/PagecallSDK/PagecallNative.js'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.default_subspec = :none
s.subspec 'Log' do |subspec|
subspec.dependency 'Sentry', '~> 8.41.0'
end
end