capacitor-plugin-vonage 1.0.0 → 1.0.1

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.
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
15
15
  s.ios.deployment_target = '13.0'
16
16
  s.dependency 'Capacitor'
17
17
  #s.dependency 'OpenTok','2.25.0'
18
- s.dependency 'OTXCFramework','2.27.2'
18
+ s.dependency 'OTXCFramework','2.27.0'
19
19
  s.swift_version = '5.1'
20
20
  s.static_framework = true
21
21
  end
@@ -11,7 +11,7 @@ buildscript {
11
11
  mavenCentral()
12
12
  }
13
13
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.0.0'
14
+ classpath 'com.android.tools.build:gradle:8.1.4'
15
15
  }
16
16
  }
17
17
 
@@ -19,10 +19,10 @@ apply plugin: 'com.android.library'
19
19
 
20
20
  android {
21
21
  namespace "com.managemyhealth.plugin.vonage"
22
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33
22
+ compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
23
23
  defaultConfig {
24
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
25
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33
24
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
25
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
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_1_8
41
- targetCompatibility JavaVersion.VERSION_1_8
40
+ sourceCompatibility JavaVersion.VERSION_11
41
+ targetCompatibility JavaVersion.VERSION_11
42
42
  }
43
43
  }
44
44
 
@@ -61,7 +61,7 @@ dependencies {
61
61
  implementation fileTree(dir: 'libs', include: ['*.jar'])
62
62
  implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
63
63
  implementation 'androidx.annotation:annotation:1.7.0'
64
- implementation 'com.opentok.android:opentok-android-sdk:2.26.2'
64
+ implementation 'com.opentok.android:opentok-android-sdk:2.30.1'
65
65
  androidTestImplementation 'androidx.test:runner:1.5.2'
66
66
  androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
67
67
 
@@ -476,8 +476,7 @@ class VideoChatViewController: UIViewController,OTSessionDelegate,OTPublisherDel
476
476
  let customAlert = CustomAlertViewController(nibName: "CustomAlertViewController", bundle: Bundle(for: CustomAlertViewController.self))
477
477
  customAlert.isModalInPresentation = true
478
478
  customAlert.delegate = self
479
- customAlert.modalPresentationStyle = .overCurrentContext
480
- customAlert.view.backgroundColor = UIColor.black.withAlphaComponent(0.2)
479
+ customAlert.modalPresentationStyle = .popover
481
480
  self.present(customAlert, animated: true)
482
481
  }
483
482
  func btnYesClicked() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-plugin-vonage",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "opentok sdk capacitor plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",