You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **⚠️ Advanced Usage:** Customizing native SDK versions is intended for advanced users only. Using non-default versions may cause build-time errors, or compatibility issues. Always review and update custom versions when upgrading react-native-rive.
69
+
70
+
By default, react-native-rive uses specific versions of the Rive native SDKs defined in the library's `package.json` (`runtimeVersions.ios` and `runtimeVersions.android`). You can customize these versions if needed.
71
+
72
+
### Vanilla React Native
73
+
74
+
Add the appropriate properties to your configuration files:
75
+
76
+
**iOS** - Add to `ios/Podfile.properties.json`:
77
+
78
+
```json
79
+
{
80
+
"RiveRuntimeIOSVersion": "6.13.0"
81
+
}
82
+
```
83
+
84
+
**Android** - Add to `android/gradle.properties`:
85
+
86
+
```properties
87
+
Rive_RiveRuntimeAndroidVersion=10.6.0
88
+
```
89
+
90
+
### Expo
91
+
92
+
Use an inline config plugin in your `app.config.ts`:
0 commit comments