diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b7fd872..e5de284b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 2.28.3 (October 2024) + +- [Update]: This version updates the Vonage Video Android SDK to version 2.28.3 and the Vonage Video iOS SDK to version 2.28.2. See the [Android SDK release notes](https://tokbox.com/developer/sdks/android/release-notes.html) and the [iOS SDK release notes](https://tokbox.com/developer/sdks/ios/release-notes.html). + + This version updates `sourceCompatibility` and `targetCompatibility` to Java 17 in the Android build.gradle file. When using this version, you will need to specify `sourceCompatibility` and `targetCompatibility` in the Android build.gradle file: + + ``` + compileOptions { + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 + } + ``` + # 2.28.2 (September 2024) - [Update]: This version updates the Vonage Video Android and iOS SDK to version 2.28.1. See the [Android SDK release notes](https://tokbox.com/developer/sdks/android/release-notes.html) and the [iOS SDK release notes](https://tokbox.com/developer/sdks/ios/release-notes.html). diff --git a/README.md b/README.md index 636e8f54..c7fa93e8 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ See the system requirements for the [OpenTok Android SDK](https://tokbox.com/dev ``` target '' do # Pods for - pod 'OTXCFramework', '2.28.1' + pod 'OTXCFramework', '2.28.2' end ``` diff --git a/android/build.gradle b/android/build.gradle index c4ba66e7..08dc0ebe 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -12,8 +12,8 @@ android { buildToolsVersion _buildToolsVersion compileOptions { - sourceCompatibility JavaVersion.VERSION_11 - targetCompatibility JavaVersion.VERSION_11 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } defaultConfig { @@ -27,5 +27,5 @@ android { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:${_reactNativeVersion}" // From node_modules - implementation 'com.opentok.android:opentok-android-sdk:2.28.1' + implementation 'com.opentok.android:opentok-android-sdk:2.28.3' } diff --git a/opentok-react-native.podspec b/opentok-react-native.podspec index 503e68dc..c5637e10 100644 --- a/opentok-react-native.podspec +++ b/opentok-react-native.podspec @@ -17,5 +17,5 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,swift}" s.dependency 'React' - s.dependency 'OTXCFramework','2.28.1' + s.dependency 'OTXCFramework','2.28.2' end diff --git a/package-lock.json b/package-lock.json index 15be7e81..a6708881 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opentok-react-native", - "version": "2.28.2", + "version": "2.28.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "opentok-react-native", - "version": "2.28.2", + "version": "2.28.3", "license": "MIT", "dependencies": { "axios": "^1.6.8", diff --git a/package.json b/package.json index 45454574..b76f82d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opentok-react-native", - "version": "2.28.2", + "version": "2.28.3", "description": "React Native components for OpenTok iOS and Android SDKs", "main": "src/index.js", "homepage": "https://www.tokbox.com",