diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c7ac6a4..2104fcc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -121,7 +121,7 @@ pod update RiveRuntime In the top-level `android` folder, change the dependency version in `build.gradle` to the version you're looking to upgrade to in the dependencies: ``` -implementation 'app.rive:rive-android:8.2.1' +implementation 'app.rive:rive-android:x.x.x' ``` ### Debugging against local rive-android diff --git a/android/build.gradle b/android/build.gradle index b533adf..a9e0d76 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -138,7 +138,7 @@ dependencies { implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1' - implementation 'app.rive:rive-android:9.11.1' + implementation 'app.rive:rive-android:9.11.3' implementation "androidx.startup:startup-runtime:1.1.1" implementation 'com.android.volley:volley:1.2.0' } diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 5c33464..62710e6 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -487,10 +487,10 @@ PODS: - React-jsi (= 0.72.7) - React-logger (= 0.72.7) - React-perflogger (= 0.72.7) - - rive-react-native (8.1.0): + - rive-react-native (8.3.0): - React-Core - - RiveRuntime (= 6.3.7) - - RiveRuntime (6.3.7) + - RiveRuntime (= 6.4.0) + - RiveRuntime (6.4.0) - RNCMaskedView (0.2.9): - React-Core - RNCPicker (1.16.8): @@ -744,8 +744,8 @@ SPEC CHECKSUMS: React-runtimescheduler: 7649c3b46c8dee1853691ecf60146a16ae59253c React-utils: 56838edeaaf651220d1e53cd0b8934fb8ce68415 ReactCommon: 5f704096ccf7733b390f59043b6fa9cc180ee4f6 - rive-react-native: c1e502792a4e5fc7dc6d49c2f488cef41d35936d - RiveRuntime: dbcfe1594ef0b03f0bac0952ccb31dd2ed39740a + rive-react-native: 04e907f1d7c0c55431d68d442444ee035902e2ec + RiveRuntime: ba54dfb17b773ada26202321fd9d9e7eb7a8520d RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6 RNCPicker: 0991c56da7815c0cf946d6f63cf920b25296e5f6 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 diff --git a/example/src/NestedDynamicText.tsx b/example/src/NestedDynamicText.tsx index 8a9e263..4a597fa 100644 --- a/example/src/NestedDynamicText.tsx +++ b/example/src/NestedDynamicText.tsx @@ -17,9 +17,10 @@ export default function NestedDynamicText() { const handleInputChange = (e: string) => { // Set the TextRun value of the 'name' TextRun // The name must exist else an error will be thrown - // See: https://help.rive.app/runtimes/text + // See: https://rive.app/community/doc/text/docn2E6y1lXo#readupdate-text-runs-at-runtime riveRef.current?.setTextRunValue('Run A', e); // Set the TextRun value of the 'Run B' TextRun in nested Artboard 2. + // See: https://rive.app/community/doc/text/docn2E6y1lXo#readupdate-nested-text-runs-at-runtime riveRef.current?.setTextRunValueAtPath('Run B', e, 'Artboard 2'); }; @@ -66,6 +67,6 @@ const styles = StyleSheet.create({ }, animation: { width: '100%', - height: 100, + height: 500, }, }); diff --git a/package.json b/package.json index e116678..8d1306f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rive-react-native", - "version": "8.2.0", + "version": "8.3.0", "description": "Rive React Native", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/rive-react-native.podspec b/rive-react-native.podspec index 8982bbb..a43951f 100644 --- a/rive-react-native.podspec +++ b/rive-react-native.podspec @@ -18,5 +18,5 @@ Pod::Spec.new do |s| s.swift_version = "5.0" s.dependency "React-Core" - s.dependency "RiveRuntime", "6.3.7" + s.dependency "RiveRuntime", "6.4.0" end