Running this simple test on android target works b...
# squarelibraries
j
Running this simple test on android target works but crashes on ios with the following error
kotlin.native.concurrent.InvalidMutabilityException: mutation attempt of frozen kotlin.Array
Copy code
@Test
fun `test transaction`() {
    queries.transaction {

    }
}
What am I missing here?
🤔 1
c
âž•
j
there is already an open issue : https://github.com/cashapp/sqldelight/issues/2561 I commented on it too with my case
I created a blank new kmm project last night and added sqldelight v1.5.2 to it. There the test could pass, meaning the issue was with my project. After updating a bunch of dependencies and my gradle file I can run test with transitions 🥳
s
Interesting. Wasn't expecting this to be affected by other dependencies.