capacitor-jitsi-meet 6.2.0 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
Pod::Spec.new do |s|
|
|
3
3
|
s.name = 'CapacitorJitsiMeet'
|
|
4
|
-
s.version = '6.
|
|
4
|
+
s.version = '6.3.0'
|
|
5
5
|
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.'
|
|
6
6
|
s.license = 'MIT'
|
|
7
7
|
s.homepage = 'https://github.com/calvinckho/capacitor-jitsi-meet'
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
'ios/Plugin/Plugin/*.storyboard'
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
|
-
s.ios.deployment_target = '
|
|
16
|
+
s.ios.deployment_target = '15.'
|
|
17
17
|
s.dependency 'Capacitor'
|
|
18
|
-
s.dependency 'JitsiMeetSDK', '10.
|
|
18
|
+
s.dependency 'JitsiMeetSDK', '10.3.0'
|
|
19
19
|
end
|
package/android/build.gradle
CHANGED
|
@@ -52,7 +52,7 @@ repositories {
|
|
|
52
52
|
dependencies {
|
|
53
53
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
54
54
|
implementation project(':capacitor-android')
|
|
55
|
-
implementation ('org.jitsi.react:jitsi-meet-sdk:10.
|
|
55
|
+
implementation ('org.jitsi.react:jitsi-meet-sdk:10.3.0') { transitive = true }
|
|
56
56
|
implementation 'androidx.activity:activity:1.2.3'
|
|
57
57
|
|
|
58
58
|
// Firebase
|
|
@@ -22,7 +22,7 @@ import timber.log.Timber;
|
|
|
22
22
|
import org.jitsi.meet.sdk.*;
|
|
23
23
|
import org.json.JSONException;
|
|
24
24
|
|
|
25
|
-
import static android.content.Context.
|
|
25
|
+
import static android.content.Context.RECEIVER_EXPORTED;
|
|
26
26
|
|
|
27
27
|
@CapacitorPlugin(
|
|
28
28
|
name= "Jitsi",
|
|
@@ -65,7 +65,7 @@ public class Jitsi extends Plugin {
|
|
|
65
65
|
filter.addAction("onParticipantsInfoRetrieved");
|
|
66
66
|
|
|
67
67
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
68
|
-
getContext().registerReceiver(receiver, filter,
|
|
68
|
+
getContext().registerReceiver(receiver, filter, RECEIVER_EXPORTED);
|
|
69
69
|
} else {
|
|
70
70
|
getContext().registerReceiver(receiver, filter);
|
|
71
71
|
}
|
package/ios/Plugin/Podfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Uncomment the next line to define a global platform for your project
|
|
2
|
-
platform :ios, '
|
|
2
|
+
platform :ios, '15.1'
|
|
3
3
|
|
|
4
4
|
target 'Plugin' do
|
|
5
5
|
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
|
@@ -7,7 +7,7 @@ target 'Plugin' do
|
|
|
7
7
|
|
|
8
8
|
# Pods for IonicRunner
|
|
9
9
|
pod 'Capacitor'
|
|
10
|
-
pod 'JitsiMeetSDK', '10.
|
|
10
|
+
pod 'JitsiMeetSDK', '10.3.0'
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
post_install do |installer|
|
|
@@ -22,5 +22,5 @@ target 'PluginTests' do
|
|
|
22
22
|
use_frameworks!
|
|
23
23
|
|
|
24
24
|
pod 'Capacitor'
|
|
25
|
-
pod 'JitsiMeetSDK', '10.
|
|
25
|
+
pod 'JitsiMeetSDK', '10.3.0'
|
|
26
26
|
end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-jitsi-meet",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "This Ionic Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|