capacitor-jitsi-meet 6.3.0 → 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.
- package/CapacitorJitsiMeet.podspec +1 -1
- package/README.md +13 -2
- package/android/build.gradle +9 -9
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/android/gradlew +13 -9
- package/android/gradlew.bat +94 -92
- package/dist/plugin.js +46 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/Plugin.xcodeproj/project.pbxproj +4 -4
- package/ios/Plugin/Plugin.xcodeproj/xcuserdata/calvinho.xcuserdatad/xcschemes/xcschememanagement.plist +1 -1
- package/ios/Plugin/Plugin.xcworkspace/xcuserdata/calvinho.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/Plugin/Podfile.lock +10 -10
- package/package.json +17 -15
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
|
-
|
|
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 [
|
|
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
|
|
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
4
|
-
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1
|
|
5
|
-
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.
|
|
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
|
|
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 :
|
|
22
|
+
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
|
|
23
23
|
defaultConfig {
|
|
24
|
-
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion :
|
|
25
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion :
|
|
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.
|
|
41
|
-
targetCompatibility JavaVersion.
|
|
40
|
+
sourceCompatibility JavaVersion.VERSION_21
|
|
41
|
+
targetCompatibility JavaVersion.VERSION_21
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
}
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.
|
|
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/
|
|
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
|
-
|
|
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
|
-
# *
|
|
206
|
-
#
|
|
207
|
-
#
|
|
208
|
-
#
|
|
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" \
|
package/android/gradlew.bat
CHANGED
|
@@ -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
|
-
@
|
|
18
|
-
|
|
19
|
-
@
|
|
20
|
-
@rem
|
|
21
|
-
@rem
|
|
22
|
-
@rem
|
|
23
|
-
|
|
24
|
-
@rem
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
set
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
echo.
|
|
49
|
-
echo
|
|
50
|
-
echo
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
echo.
|
|
63
|
-
echo
|
|
64
|
-
echo
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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;
|
package/ios/Plugin/Plugin.xcworkspace/xcuserdata/calvinho.xcuserdatad/UserInterfaceState.xcuserstate
CHANGED
|
Binary file
|
package/ios/Plugin/Podfile.lock
CHANGED
|
@@ -2,12 +2,12 @@ PODS:
|
|
|
2
2
|
- Capacitor (6.1.2):
|
|
3
3
|
- CapacitorCordova
|
|
4
4
|
- CapacitorCordova (6.1.2)
|
|
5
|
-
- Giphy (2.2.
|
|
5
|
+
- Giphy (2.2.12):
|
|
6
6
|
- libwebp
|
|
7
|
-
- JitsiMeetSDK (10.
|
|
8
|
-
- Giphy (= 2.2.
|
|
7
|
+
- JitsiMeetSDK (10.3.0):
|
|
8
|
+
- Giphy (= 2.2.12)
|
|
9
9
|
- JitsiWebRTC (~> 124.0)
|
|
10
|
-
- JitsiWebRTC (124.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.
|
|
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:
|
|
41
|
-
JitsiMeetSDK:
|
|
42
|
-
JitsiWebRTC:
|
|
40
|
+
Giphy: 83628960ed04e1c3428ff1b4fb2b027f65e82f50
|
|
41
|
+
JitsiMeetSDK: 439fc3e45870c5ebf7b371fa038719bf70ef76d9
|
|
42
|
+
JitsiWebRTC: d0ae5fd6a81e771bfd82c2ee6c6bb542ebd65ee8
|
|
43
43
|
libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009
|
|
44
44
|
|
|
45
|
-
PODFILE CHECKSUM:
|
|
45
|
+
PODFILE CHECKSUM: 1403deed70b60cc64773c169a8f55f4d8d9ffcb7
|
|
46
46
|
|
|
47
|
-
COCOAPODS: 1.
|
|
47
|
+
COCOAPODS: 1.16.2
|
package/package.json
CHANGED
|
@@ -1,34 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-jitsi-meet",
|
|
3
|
-
"version": "
|
|
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": "^
|
|
19
|
-
"@capacitor/core": "^
|
|
19
|
+
"@capacitor/cli": "^7.0.0",
|
|
20
|
+
"@capacitor/core": "^7.0.0"
|
|
20
21
|
},
|
|
21
22
|
"devDependencies": {
|
|
22
|
-
"@capacitor/android": "^
|
|
23
|
-
"@capacitor/ios": "^
|
|
24
|
-
"@ionic/
|
|
25
|
-
"@ionic/
|
|
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": "^
|
|
28
|
-
"prettier-plugin-java": "^
|
|
29
|
-
"rimraf": "^
|
|
30
|
-
"rollup": "^4.
|
|
31
|
-
"swiftlint": "^
|
|
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"
|