Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions android/src/new/java/com/rive/RiveReactNativeView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ class RiveReactNativeView(context: ThemedReactContext) : FrameLayout(context) {
settled = false
settledJob?.cancel()
settledJob = viewScope.launch {
// Deprecated in rive-android >= 11.8 (removal planned for 12.0), kept as a
// compatibility shim. Revisit when 12.0 defines the long-term settling surface.
@Suppress("DEPRECATION")
worker.settledFlow.collect { settledHandle ->
if (settledHandle == handle && !settled) {
settled = true
Expand Down
2 changes: 1 addition & 1 deletion ios/new/RiveRuntimeLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ final class RiveRuntimeLogger: RiveRuntime.RiveLog.Logger, @unchecked Sendable {
// first frame(s) have no drawable yet; the SDK logs that transient
// condition at error level, which LogBox turns into a red screen in dev.
// Rendering recovers on the next tick, so forward it as debug instead.
// https://github.com/rive-app/rive-ios/blob/6.21.1/Source/Concurrency/View/RiveUIView.swift#L449-L454
// https://github.com/rive-app/rive-ios/blob/6.23.1/Source/Concurrency/View/RiveUIView.swift#L448-L453
if case .view = tag, text == "Draw failed: missing drawable" {
RiveLog.d(name, "\(text)\(suffix)")
return
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
},
"homepage": "https://github.com/rive-app/rive-nitro-react-native#readme",
"runtimeVersions": {
"ios": "6.21.1",
"android": "11.7.2"
"ios": "6.23.1",
"android": "11.9.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
Expand Down
Loading