Hello there, I’m seeing an issue on iOS with supab...
# supabase-kt
s
Hello there, I’m seeing an issue on iOS with supabase-kt (3.2.4 here, kotlin 2.2.10):
Copy code
kotlin.native.internal.IrLinkageError: Function 'update' can not be called: No function found for symbol 'kotlin.concurrent.atomics/update|update@kotlin.concurrent.atomics.AtomicReference<0:0>(kotlin.Function1<0:0,0:0>){0§<kotlin.Any?>}[0]'
Getting this with postgrest + realtime, while trying to listen to a
selectSingleValueAsFlow
It works well on Android with the same code (see 🧵)
Code in my case is following:
Copy code
supabase.postgrest.from("profiles")
    .selectSingleValueAsFlow(UserProfileEntity::id) { UserProfileEntity::id eq userId }
Basic listening of user profile changes
stacktrace.txt
Works well by downgrading to Supabase
3.2.2
(can’t update to Kotlin
2.2.20
because of SKIE, if that’s the cause)
j
You need Kotlin 2.2.20, they introduced some atomic methods used in this release