-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCapacitorJitsiMeet.podspec
19 lines (18 loc) · 976 Bytes
/
CapacitorJitsiMeet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'CapacitorJitsiMeet'
s.version = '7.0.0'
s.summary = 'This plugin is used to make video calls using Jitsi video platform (https://meet.jit.si) on iOS and Android using Capacitor. Since the current implementation of Ionic/PWA apps on iOS run on top of WKWebView, and as of today (24/01/2019), Apple does not support WebRTC on WKWebView, the only way to work with Jitsi Video on this platform is to build it natively.'
s.license = 'MIT'
s.homepage = 'https://github.com/calvinckho/capacitor-jitsi-meet'
s.author = 'Calvin Ho'
s.source = { :git => 'https://github.com/calvinckho/capacitor-jitsi-meet', :tag => s.version.to_s }
s.source_files = 'ios/Plugin/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.resource_bundles = {
'Plugin' => [
'ios/Plugin/Plugin/*.storyboard'
]
}
s.ios.deployment_target = '15.1'
s.dependency 'Capacitor'
s.dependency 'JitsiMeetSDK', '10.3.0'
end