diff --git a/CHANGELOG.md b/CHANGELOG.md
index efc71fa..32889ce 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Changelog
 
+### 1.35.0
+- Update native Android and iOS modules to use Voximplant Android SDK 2.34.0 and Voximplant iOS SDK 2.46.11
+
 ### 1.34.0
 - Introduce new APIs to monitor issues that affect call quality:
   - Call.qualityIssues - Instance of a class that may be used to subscribe to call quality issues events.
@@ -23,7 +26,6 @@
 ### 1.30.0
 - Update native Android and iOS modules to use Voximplant Android SDK 2.32.1 and Voximplant iOS SDK 2.46.4
 
-
 ### 1.29.1
 - Remove unused devDependencies
 
diff --git a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java
index 88dd0e7..e526430 100644
--- a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java
+++ b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java
@@ -101,7 +101,7 @@ public String getName() {
 	//region React methods
 	@ReactMethod
 	public void init(ReadableMap settings) {
-		Voximplant.subVersion = "react-1.34.0";
+		Voximplant.subVersion = "react-1.35.0";
 		ClientConfig config = Utils.convertClientConfigFromMap(settings);
 		mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config);
 		mClient.setClientIncomingCallListener(this);
diff --git a/ios/RNVIClientModule.m b/ios/RNVIClientModule.m
index 7c9b9c1..1fd15db 100644
--- a/ios/RNVIClientModule.m
+++ b/ios/RNVIClientModule.m
@@ -80,7 +80,7 @@ - (void)stopObserving {
 RCT_EXPORT_METHOD(initWithOptions:(NSDictionary *)options) {
     VILogLevel logLevel = [RNVIUtils convertLogLevelFromString:[options objectForKey:@"logLevel"]];
     [VIClient setLogLevel:logLevel];
-    [VIClient setVersionExtension:@"react-1.34.0"];
+    [VIClient setVersionExtension:@"react-1.35.0"];
     BOOL h264RecoveryMode = [[options objectForKey:@"h264RecoveryMode"] boolValue];
     if (h264RecoveryMode) {
       RTCInitFieldTrialDictionary(@{
diff --git a/package.json b/package.json
index d43ee34..6037836 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "react-native-voximplant",
-  "version": "1.34.0",
+  "version": "1.35.0",
   "description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
   "nativePackage": true,
   "keywords": [
diff --git a/react-native-voximplant.podspec b/react-native-voximplant.podspec
index 30ce16f..2612fac 100644
--- a/react-native-voximplant.podspec
+++ b/react-native-voximplant.podspec
@@ -7,7 +7,7 @@ Pod::Spec.new do |s|
     s.homepage     = 'https://github.com/voximplant/react-native-voximplant'
     s.source       = {:path => './ios/'}
     s.summary      = 'RN voximplant'
-    s.version      = '1.34.0'
+    s.version      = '1.35.0'
     s.dependency   'VoxImplantSDK', '2.46.11'
     s.dependency   'React'
 end