From 9d19d9f825d53e08af843b6651ae1ae421f4d978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikl=C3=B3s=20Fazekas?= Date: Tue, 3 Mar 2026 16:21:11 +0100 Subject: [PATCH] fix: bump native runtimes (iOS 6.15.2, Android 11.2.0) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dc44682..8053e1d 100644 --- a/README.md +++ b/README.md @@ -111,8 +111,8 @@ By default, `rive-react-native` uses the native SDK versions specified in `packa ```json "runtimeVersions": { - "ios": "6.12.0", - "android": "10.4.5" + "ios": "6.15.2", + "android": "11.2.0" } ``` @@ -128,7 +128,7 @@ Create or edit `ios/Podfile.properties.json`: ```json { - "RiveRuntimeIOSVersion": "6.13.0" + "RiveRuntimeIOSVersion": "6.15.2" } ``` @@ -143,7 +143,7 @@ cd ios && pod install Add to `android/gradle.properties`: ```properties -Rive_RiveRuntimeAndroidVersion=10.5.0 +Rive_RiveRuntimeAndroidVersion=11.2.0 ``` #### Expo Projects @@ -161,13 +161,13 @@ export default ({ config }: ConfigContext): ExpoConfig => ({ [ withPodfileProperties, { - RiveRuntimeIOSVersion: '6.13.0', + RiveRuntimeIOSVersion: '6.15.2', }, ], [ withGradleProperties, { - Rive_RiveRuntimeAndroidVersion: '10.5.0', + Rive_RiveRuntimeAndroidVersion: '11.2.0', }, ], ],