capacitor-jitsi-meet 6.2.1 → 7.0.0-beta.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.2.0'
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 = '13.4'
16
+ s.ios.deployment_target = '14.0'
17
17
  s.dependency 'Capacitor'
18
- s.dependency 'JitsiMeetSDK', '10.1.2'
18
+ s.dependency 'JitsiMeetSDK', '10.3.0'
19
19
  end
package/README.md CHANGED
@@ -14,6 +14,17 @@ This Ionic Capacitor plugin is created to make video calls through the free, ope
14
14
  </tr>
15
15
  </thead>
16
16
  <tbody>
17
+ <tr>
18
+ <td>
19
+ v7
20
+ </td>
21
+ <td>
22
+ >= 7.0.0
23
+ </td>
24
+ <td>
25
+ current
26
+ </td>
27
+ </tr>
17
28
  <tr>
18
29
  <td>
19
30
  v6
@@ -22,7 +33,7 @@ This Ionic Capacitor plugin is created to make video calls through the free, ope
22
33
  >= 6.0.0
23
34
  </td>
24
35
  <td>
25
- current
36
+ until Feb 30, 2024
26
37
  </td>
27
38
  </tr>
28
39
  <tr>
@@ -83,7 +94,7 @@ This Ionic Capacitor plugin is created to make video calls through the free, ope
83
94
  </tbody>
84
95
  </table>
85
96
 
86
- Follow the [official Capacitor doc to upgrade to Capacitor 5](https://capacitorjs.com/docs/updating/5-0).
97
+ Follow the [Capacitor doc to upgrade to the latest Capacitor version](https://capacitorjs.com/docs).
87
98
 
88
99
  ## iOS Compatible Versions
89
100
 
@@ -1,8 +1,8 @@
1
1
  ext {
2
2
  junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
3
- androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
4
- androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
5
- androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
3
+ androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.0'
4
+ androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.2.1'
5
+ androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.6.1'
6
6
  }
7
7
 
8
8
  buildscript {
@@ -11,7 +11,7 @@ buildscript {
11
11
  google()
12
12
  }
13
13
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.2.1'
14
+ classpath 'com.android.tools.build:gradle:8.7.2'
15
15
  }
16
16
  }
17
17
 
@@ -19,10 +19,10 @@ apply plugin: 'com.android.library'
19
19
 
20
20
  android {
21
21
  namespace "com.capacitor.jitsi.plugin.capacitorjitsimeet"
22
- compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
22
+ compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
23
23
  defaultConfig {
24
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
25
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
24
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
25
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
26
26
  versionCode 1
27
27
  versionName "1.0"
28
28
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -37,8 +37,8 @@ android {
37
37
  abortOnError false
38
38
  }
39
39
  compileOptions {
40
- sourceCompatibility JavaVersion.VERSION_17
41
- targetCompatibility JavaVersion.VERSION_17
40
+ sourceCompatibility JavaVersion.VERSION_21
41
+ targetCompatibility JavaVersion.VERSION_21
42
42
  }
43
43
 
44
44
  }
@@ -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.1.2') { transitive = true }
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
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
package/android/gradlew CHANGED
@@ -15,6 +15,8 @@
15
15
  # See the License for the specific language governing permissions and
16
16
  # limitations under the License.
17
17
  #
18
+ # SPDX-License-Identifier: Apache-2.0
19
+ #
18
20
 
19
21
  ##############################################################################
20
22
  #
@@ -55,7 +57,7 @@
55
57
  # Darwin, MinGW, and NonStop.
56
58
  #
57
59
  # (3) This script is generated from the Groovy template
58
- # https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
60
+ # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
59
61
  # within the Gradle project.
60
62
  #
61
63
  # You can find Gradle at https://github.com/gradle/gradle/.
@@ -83,7 +85,9 @@ done
83
85
  # This is normally unused
84
86
  # shellcheck disable=SC2034
85
87
  APP_BASE_NAME=${0##*/}
86
- APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
88
+ # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89
+ APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90
+ ' "$PWD" ) || exit
87
91
 
88
92
  # Use the maximum available, or set MAX_FD != -1 to use that value.
89
93
  MAX_FD=maximum
@@ -144,7 +148,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144
148
  case $MAX_FD in #(
145
149
  max*)
146
150
  # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147
- # shellcheck disable=SC3045
151
+ # shellcheck disable=SC2039,SC3045
148
152
  MAX_FD=$( ulimit -H -n ) ||
149
153
  warn "Could not query maximum file descriptor limit"
150
154
  esac
@@ -152,7 +156,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
152
156
  '' | soft) :;; #(
153
157
  *)
154
158
  # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155
- # shellcheck disable=SC3045
159
+ # shellcheck disable=SC2039,SC3045
156
160
  ulimit -n "$MAX_FD" ||
157
161
  warn "Could not set maximum file descriptor limit to $MAX_FD"
158
162
  esac
@@ -201,11 +205,11 @@ fi
201
205
  # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
202
206
  DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
203
207
 
204
- # Collect all arguments for the java command;
205
- # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
206
- # shell script including quotes and variable substitutions, so put them in
207
- # double quotes to make sure that they get re-expanded; and
208
- # * put everything else in single quotes, so that it's not re-expanded.
208
+ # Collect all arguments for the java command:
209
+ # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210
+ # and any embedded shellness will be escaped.
211
+ # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212
+ # treated as '${Hostname}' itself on the command line.
209
213
 
210
214
  set -- \
211
215
  "-Dorg.gradle.appname=$APP_BASE_NAME" \
@@ -1,92 +1,94 @@
1
- @rem
2
- @rem Copyright 2015 the original author or authors.
3
- @rem
4
- @rem Licensed under the Apache License, Version 2.0 (the "License");
5
- @rem you may not use this file except in compliance with the License.
6
- @rem You may obtain a copy of the License at
7
- @rem
8
- @rem https://www.apache.org/licenses/LICENSE-2.0
9
- @rem
10
- @rem Unless required by applicable law or agreed to in writing, software
11
- @rem distributed under the License is distributed on an "AS IS" BASIS,
12
- @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- @rem See the License for the specific language governing permissions and
14
- @rem limitations under the License.
15
- @rem
16
-
17
- @if "%DEBUG%"=="" @echo off
18
- @rem ##########################################################################
19
- @rem
20
- @rem Gradle startup script for Windows
21
- @rem
22
- @rem ##########################################################################
23
-
24
- @rem Set local scope for the variables with windows NT shell
25
- if "%OS%"=="Windows_NT" setlocal
26
-
27
- set DIRNAME=%~dp0
28
- if "%DIRNAME%"=="" set DIRNAME=.
29
- @rem This is normally unused
30
- set APP_BASE_NAME=%~n0
31
- set APP_HOME=%DIRNAME%
32
-
33
- @rem Resolve any "." and ".." in APP_HOME to make it shorter.
34
- for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
35
-
36
- @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
37
- set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
38
-
39
- @rem Find java.exe
40
- if defined JAVA_HOME goto findJavaFromJavaHome
41
-
42
- set JAVA_EXE=java.exe
43
- %JAVA_EXE% -version >NUL 2>&1
44
- if %ERRORLEVEL% equ 0 goto execute
45
-
46
- echo.
47
- echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48
- echo.
49
- echo Please set the JAVA_HOME variable in your environment to match the
50
- echo location of your Java installation.
51
-
52
- goto fail
53
-
54
- :findJavaFromJavaHome
55
- set JAVA_HOME=%JAVA_HOME:"=%
56
- set JAVA_EXE=%JAVA_HOME%/bin/java.exe
57
-
58
- if exist "%JAVA_EXE%" goto execute
59
-
60
- echo.
61
- echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62
- echo.
63
- echo Please set the JAVA_HOME variable in your environment to match the
64
- echo location of your Java installation.
65
-
66
- goto fail
67
-
68
- :execute
69
- @rem Setup the command line
70
-
71
- set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
72
-
73
-
74
- @rem Execute Gradle
75
- "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
76
-
77
- :end
78
- @rem End local scope for the variables with windows NT shell
79
- if %ERRORLEVEL% equ 0 goto mainEnd
80
-
81
- :fail
82
- rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83
- rem the _cmd.exe /c_ return code!
84
- set EXIT_CODE=%ERRORLEVEL%
85
- if %EXIT_CODE% equ 0 set EXIT_CODE=1
86
- if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
87
- exit /b %EXIT_CODE%
88
-
89
- :mainEnd
90
- if "%OS%"=="Windows_NT" endlocal
91
-
92
- :omega
1
+ @rem
2
+ @rem Copyright 2015 the original author or authors.
3
+ @rem
4
+ @rem Licensed under the Apache License, Version 2.0 (the "License");
5
+ @rem you may not use this file except in compliance with the License.
6
+ @rem You may obtain a copy of the License at
7
+ @rem
8
+ @rem https://www.apache.org/licenses/LICENSE-2.0
9
+ @rem
10
+ @rem Unless required by applicable law or agreed to in writing, software
11
+ @rem distributed under the License is distributed on an "AS IS" BASIS,
12
+ @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ @rem See the License for the specific language governing permissions and
14
+ @rem limitations under the License.
15
+ @rem
16
+ @rem SPDX-License-Identifier: Apache-2.0
17
+ @rem
18
+
19
+ @if "%DEBUG%"=="" @echo off
20
+ @rem ##########################################################################
21
+ @rem
22
+ @rem Gradle startup script for Windows
23
+ @rem
24
+ @rem ##########################################################################
25
+
26
+ @rem Set local scope for the variables with windows NT shell
27
+ if "%OS%"=="Windows_NT" setlocal
28
+
29
+ set DIRNAME=%~dp0
30
+ if "%DIRNAME%"=="" set DIRNAME=.
31
+ @rem This is normally unused
32
+ set APP_BASE_NAME=%~n0
33
+ set APP_HOME=%DIRNAME%
34
+
35
+ @rem Resolve any "." and ".." in APP_HOME to make it shorter.
36
+ for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
37
+
38
+ @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
39
+ set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
40
+
41
+ @rem Find java.exe
42
+ if defined JAVA_HOME goto findJavaFromJavaHome
43
+
44
+ set JAVA_EXE=java.exe
45
+ %JAVA_EXE% -version >NUL 2>&1
46
+ if %ERRORLEVEL% equ 0 goto execute
47
+
48
+ echo. 1>&2
49
+ echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
50
+ echo. 1>&2
51
+ echo Please set the JAVA_HOME variable in your environment to match the 1>&2
52
+ echo location of your Java installation. 1>&2
53
+
54
+ goto fail
55
+
56
+ :findJavaFromJavaHome
57
+ set JAVA_HOME=%JAVA_HOME:"=%
58
+ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
59
+
60
+ if exist "%JAVA_EXE%" goto execute
61
+
62
+ echo. 1>&2
63
+ echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
64
+ echo. 1>&2
65
+ echo Please set the JAVA_HOME variable in your environment to match the 1>&2
66
+ echo location of your Java installation. 1>&2
67
+
68
+ goto fail
69
+
70
+ :execute
71
+ @rem Setup the command line
72
+
73
+ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
74
+
75
+
76
+ @rem Execute Gradle
77
+ "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
78
+
79
+ :end
80
+ @rem End local scope for the variables with windows NT shell
81
+ if %ERRORLEVEL% equ 0 goto mainEnd
82
+
83
+ :fail
84
+ rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
85
+ rem the _cmd.exe /c_ return code!
86
+ set EXIT_CODE=%ERRORLEVEL%
87
+ if %EXIT_CODE% equ 0 set EXIT_CODE=1
88
+ if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
89
+ exit /b %EXIT_CODE%
90
+
91
+ :mainEnd
92
+ if "%OS%"=="Windows_NT" endlocal
93
+
94
+ :omega
package/dist/plugin.js ADDED
@@ -0,0 +1,46 @@
1
+ var JitsiPlugin = (function (exports, core) {
2
+ 'use strict';
3
+
4
+ const Jitsi$1 = core.registerPlugin('Jitsi', {
5
+ web: () => Promise.resolve().then(function () { return web; }).then(m => new m.JitsiWeb()),
6
+ });
7
+
8
+ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
9
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
10
+ return new (P || (P = Promise))(function (resolve, reject) {
11
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
12
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
13
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
14
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
15
+ });
16
+ };
17
+ class JitsiWeb extends core.WebPlugin {
18
+ // @ts-ignore
19
+ joinConference(options) {
20
+ return __awaiter(this, undefined, undefined, function* () {
21
+ throw this.unavailable('the web implementation is not available. Please use Jitsi Meet API to implement Jitsi in web app');
22
+ });
23
+ }
24
+ ;
25
+ // @ts-ignore
26
+ leaveConference(options) {
27
+ return __awaiter(this, undefined, undefined, function* () {
28
+ throw this.unavailable('the web implementation is not available. Please use Jitsi Meet API to implement Jitsi in web app');
29
+ });
30
+ }
31
+ ;
32
+ }
33
+ const Jitsi = new JitsiWeb();
34
+
35
+ var web = /*#__PURE__*/Object.freeze({
36
+ __proto__: null,
37
+ Jitsi: Jitsi,
38
+ JitsiWeb: JitsiWeb
39
+ });
40
+
41
+ exports.Jitsi = Jitsi$1;
42
+
43
+ return exports;
44
+
45
+ })({}, capacitorExports);
46
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst Jitsi = registerPlugin('Jitsi', {\n web: () => import('./web').then(m => new m.JitsiWeb()),\n});\nexport * from './definitions';\nexport { Jitsi };\n//# sourceMappingURL=index.js.map","var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nimport { WebPlugin } from '@capacitor/core';\nexport class JitsiWeb extends WebPlugin {\n // @ts-ignore\n joinConference(options) {\n return __awaiter(this, void 0, void 0, function* () {\n throw this.unavailable('the web implementation is not available. Please use Jitsi Meet API to implement Jitsi in web app');\n });\n }\n ;\n // @ts-ignore\n leaveConference(options) {\n return __awaiter(this, void 0, void 0, function* () {\n throw this.unavailable('the web implementation is not available. Please use Jitsi Meet API to implement Jitsi in web app');\n });\n }\n ;\n}\nconst Jitsi = new JitsiWeb();\nexport { Jitsi };\n//# sourceMappingURL=web.js.map"],"names":["Jitsi","registerPlugin","this","WebPlugin"],"mappings":";;;AACK,UAACA,OAAK,GAAGC,mBAAc,CAAC,OAAO,EAAE;IACtC,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC;IAC1D,CAAC;;ICHD,IAAI,SAAS,GAAG,CAACC,SAAI,IAAIA,SAAI,CAAC,SAAS,KAAK,UAAU,OAAO,EAAE,UAAU,EAAE,CAAC,EAAE,SAAS,EAAE;IACzF,IAAI,SAAS,KAAK,CAAC,KAAK,EAAE,EAAE,OAAO,KAAK,YAAY,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,CAAC,UAAU,OAAO,EAAE,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;IAC9G,IAAI,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,EAAE,UAAU,OAAO,EAAE,MAAM,EAAE;IAC/D,QAAQ,SAAS,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;IACjG,QAAQ,SAAS,QAAQ,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE;IACpG,QAAQ,SAAS,IAAI,CAAC,MAAM,EAAE,EAAE,MAAM,CAAC,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;IACpH,QAAQ,IAAI,CAAC,CAAC,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC;IAC7E,KAAK,CAAC;IACN,CAAC;IAEM,MAAM,QAAQ,SAASC,cAAS,CAAC;IACxC;IACA,IAAI,cAAc,CAAC,OAAO,EAAE;IAC5B,QAAQ,OAAO,SAAS,CAAC,IAAI,EAAE,SAAM,EAAE,SAAM,EAAE,aAAa;IAC5D,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,kGAAkG,CAAC;IACtI,SAAS,CAAC;IACV;IACA;IACA;IACA,IAAI,eAAe,CAAC,OAAO,EAAE;IAC7B,QAAQ,OAAO,SAAS,CAAC,IAAI,EAAE,SAAM,EAAE,SAAM,EAAE,aAAa;IAC5D,YAAY,MAAM,IAAI,CAAC,WAAW,CAAC,kGAAkG,CAAC;IACtI,SAAS,CAAC;IACV;IACA;IACA;IACA,MAAM,KAAK,GAAG,IAAI,QAAQ,EAAE;;;;;;;;;;;;;;;;"}
@@ -391,7 +391,7 @@
391
391
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
392
392
  GCC_WARN_UNUSED_FUNCTION = YES;
393
393
  GCC_WARN_UNUSED_VARIABLE = YES;
394
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
394
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
395
395
  MTL_ENABLE_DEBUG_INFO = YES;
396
396
  ONLY_ACTIVE_ARCH = YES;
397
397
  SDKROOT = iphoneos;
@@ -446,7 +446,7 @@
446
446
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
447
447
  GCC_WARN_UNUSED_FUNCTION = YES;
448
448
  GCC_WARN_UNUSED_VARIABLE = YES;
449
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
449
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
450
450
  MTL_ENABLE_DEBUG_INFO = NO;
451
451
  SDKROOT = iphoneos;
452
452
  SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -473,7 +473,7 @@
473
473
  );
474
474
  INFOPLIST_FILE = Plugin/Info.plist;
475
475
  INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
476
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
476
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
477
477
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(FRAMEWORK_SEARCH_PATHS)\n$(FRAMEWORK_SEARCH_PATHS)\n$(FRAMEWORK_SEARCH_PATHS)";
478
478
  ONLY_ACTIVE_ARCH = YES;
479
479
  PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.Plugin;
@@ -502,7 +502,7 @@
502
502
  );
503
503
  INFOPLIST_FILE = Plugin/Info.plist;
504
504
  INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
505
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
505
+ IPHONEOS_DEPLOYMENT_TARGET = 14.0;
506
506
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(FRAMEWORK_SEARCH_PATHS)";
507
507
  ONLY_ACTIVE_ARCH = NO;
508
508
  PRODUCT_BUNDLE_IDENTIFIER = com.getcapacitor.Plugin;
@@ -7,7 +7,7 @@
7
7
  <key>Plugin.xcscheme_^#shared#^_</key>
8
8
  <dict>
9
9
  <key>orderHint</key>
10
- <integer>8</integer>
10
+ <integer>0</integer>
11
11
  </dict>
12
12
  </dict>
13
13
  </dict>
@@ -1,5 +1,5 @@
1
1
  # Uncomment the next line to define a global platform for your project
2
- platform :ios, '13.4'
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.1.2'
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.1.2'
25
+ pod 'JitsiMeetSDK', '10.3.0'
26
26
  end
@@ -2,12 +2,12 @@ PODS:
2
2
  - Capacitor (6.1.2):
3
3
  - CapacitorCordova
4
4
  - CapacitorCordova (6.1.2)
5
- - Giphy (2.2.4):
5
+ - Giphy (2.2.12):
6
6
  - libwebp
7
- - JitsiMeetSDK (10.0.0):
8
- - Giphy (= 2.2.4)
7
+ - JitsiMeetSDK (10.3.0):
8
+ - Giphy (= 2.2.12)
9
9
  - JitsiWebRTC (~> 124.0)
10
- - JitsiWebRTC (124.0.0)
10
+ - JitsiWebRTC (124.0.1)
11
11
  - libwebp (1.3.2):
12
12
  - libwebp/demux (= 1.3.2)
13
13
  - libwebp/mux (= 1.3.2)
@@ -23,7 +23,7 @@ PODS:
23
23
 
24
24
  DEPENDENCIES:
25
25
  - Capacitor
26
- - JitsiMeetSDK (= 10.0.0)
26
+ - JitsiMeetSDK (= 10.3.0)
27
27
 
28
28
  SPEC REPOS:
29
29
  trunk:
@@ -37,11 +37,11 @@ SPEC REPOS:
37
37
  SPEC CHECKSUMS:
38
38
  Capacitor: 8f4752e4449cc3472e0ee8d5d807744172b8b632
39
39
  CapacitorCordova: 2bff79fff47a4104445ba50130d603c7a92e7a8e
40
- Giphy: 6b5f6986c8df4f71e01a8ef86595f426b3439fb5
41
- JitsiMeetSDK: cfa73fe1b1fe9a4127749b656524a80b7bce4a98
42
- JitsiWebRTC: 37fb2fb70d42cac58c06948527a5f9e1b3f50812
40
+ Giphy: 83628960ed04e1c3428ff1b4fb2b027f65e82f50
41
+ JitsiMeetSDK: 439fc3e45870c5ebf7b371fa038719bf70ef76d9
42
+ JitsiWebRTC: d0ae5fd6a81e771bfd82c2ee6c6bb542ebd65ee8
43
43
  libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009
44
44
 
45
- PODFILE CHECKSUM: d7d5e9765b440bed781793f9edde1e3c2880564b
45
+ PODFILE CHECKSUM: 1403deed70b60cc64773c169a8f55f4d8d9ffcb7
46
46
 
47
- COCOAPODS: 1.15.2
47
+ COCOAPODS: 1.16.2
package/package.json CHANGED
@@ -1,34 +1,36 @@
1
1
  {
2
2
  "name": "capacitor-jitsi-meet",
3
- "version": "6.2.1",
3
+ "version": "7.0.0-beta.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",
7
7
  "types": "dist/esm/index.d.ts",
8
8
  "scripts": {
9
- "build": "npm run clean && tsc",
9
+ "build": "npm run clean && tsc && rollup -c rollup.config.mjs",
10
10
  "clean": "rimraf ./dist",
11
11
  "watch": "tsc --watch",
12
12
  "prepare": "npm run build",
13
- "prepublishOnly": "npm run build"
13
+ "prepublishOnly": "npm run build",
14
+ "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java"
14
15
  },
15
16
  "author": "Calvin Ho",
16
17
  "license": "MIT",
17
18
  "dependencies": {
18
- "@capacitor/cli": "^6.0.0",
19
- "@capacitor/core": "^6.0.0"
19
+ "@capacitor/cli": "^7.0.0",
20
+ "@capacitor/core": "^7.0.0"
20
21
  },
21
22
  "devDependencies": {
22
- "@capacitor/android": "^6.0.0",
23
- "@capacitor/ios": "^6.0.0",
24
- "@ionic/prettier-config": "^1.0.0",
25
- "@ionic/swiftlint-config": "^1.0.0",
23
+ "@capacitor/android": "^7.0.0",
24
+ "@capacitor/ios": "^7.0.0",
25
+ "@ionic/eslint-config": "^0.4.0",
26
+ "@ionic/prettier-config": "^4.0.0",
27
+ "@ionic/swiftlint-config": "^2.0.0",
26
28
  "@rollup/plugin-node-resolve": "^15.3.0",
27
- "prettier": "^2.7.1",
28
- "prettier-plugin-java": "^1.6.2",
29
- "rimraf": "^3.0.0",
30
- "rollup": "^4.22.4",
31
- "swiftlint": "^1.0.1",
29
+ "prettier": "^3.4.2",
30
+ "prettier-plugin-java": "^2.6.6",
31
+ "rimraf": "^6.0.1",
32
+ "rollup": "^4.30.1",
33
+ "swiftlint": "^2.0.0",
32
34
  "typescript": "~4.8.4"
33
35
  },
34
36
  "files": [
@@ -54,7 +56,7 @@
54
56
  "swiftlint": "@ionic/swiftlint-config",
55
57
  "repository": {
56
58
  "type": "git",
57
- "url": "https://github.com/calvinckho/capacitor-jitsi-meet"
59
+ "url": "git+https://github.com/calvinckho/capacitor-jitsi-meet.git"
58
60
  },
59
61
  "bugs": {
60
62
  "url": "https://github.com/calvinckho/capacitor-jitsi-meet/issues"