@seamlink/cordova-plugin-jitsi 2.1.2 → 2.2.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/build-extras.gradle
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
android {
|
|
2
|
-
compileSdkVersion
|
|
2
|
+
compileSdkVersion 36
|
|
3
3
|
buildToolsVersion "26.0.1"
|
|
4
4
|
|
|
5
5
|
defaultConfig {
|
|
6
6
|
minSdkVersion 23
|
|
7
|
-
targetSdkVersion
|
|
7
|
+
targetSdkVersion 36
|
|
8
8
|
multiDexEnabled true
|
|
9
9
|
}
|
|
10
10
|
packagingOptions {
|
|
11
11
|
exclude 'META-INF/NOTICE'
|
|
12
|
-
exclude 'META-INF/LICENSE
|
|
12
|
+
exclude 'META-INF/LICENSE'
|
|
13
13
|
}
|
|
14
14
|
}
|
package/package.json
CHANGED
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id='@seamlink/cordova-plugin-jitsi' version='2.
|
|
2
|
+
<plugin id='@seamlink/cordova-plugin-jitsi' version='2.2.0'
|
|
3
3
|
xmlns='http://apache.org/cordova/ns/plugins/1.0'
|
|
4
4
|
xmlns:tools="http://schemas.android.com/tools"
|
|
5
5
|
xmlns:android='http://schemas.android.com/apk/res/android'>
|
|
@@ -138,10 +138,6 @@ public class JitsiPlugin extends CordovaPlugin
|
|
|
138
138
|
return false;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
-
// ... all your other methods (callJoin, join, destroy, etc.) remain the same
|
|
142
|
-
// ...
|
|
143
|
-
// You can now completely remove the stateChanged() method as it is no longer
|
|
144
|
-
// needed.
|
|
145
141
|
private void callJoin(String serverUrl, String roomId, Boolean audioOnly, String token)
|
|
146
142
|
throws NameNotFoundException {
|
|
147
143
|
|
|
@@ -196,8 +192,6 @@ public class JitsiPlugin extends CordovaPlugin
|
|
|
196
192
|
|
|
197
193
|
private void destroy(final CallbackContext callbackContext) {
|
|
198
194
|
cordova.getActivity().runOnUiThread(() -> {
|
|
199
|
-
JitsiMeetActivityDelegate.onHostDestroy(cordova.getActivity());
|
|
200
|
-
cordova.getActivity().setContentView(getView());
|
|
201
195
|
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK, "DESTROYED");
|
|
202
196
|
pluginResult.setKeepCallback(true);
|
|
203
197
|
callbackContext.sendPluginResult(pluginResult);
|
|
@@ -14,12 +14,12 @@ repositories{
|
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
android {
|
|
17
|
-
compileSdkVersion
|
|
17
|
+
compileSdkVersion 36
|
|
18
18
|
buildToolsVersion "26.0.1"
|
|
19
19
|
|
|
20
20
|
defaultConfig {
|
|
21
21
|
minSdkVersion 23
|
|
22
|
-
targetSdkVersion
|
|
22
|
+
targetSdkVersion 36
|
|
23
23
|
multiDexEnabled true
|
|
24
24
|
ndk {
|
|
25
25
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|