Hi, has anyone ever got this `EXC_BAD_ACCESS (code...
# multiplatform
s
Hi, has anyone ever got this
EXC_BAD_ACCESS (code=1, address=0x0)
error in Xcode when making an API call on the KMM side? thanks.
l
That typically means there was a null pointer dereference that wasn't in your Kotlin code. You can tell this because the bad access is at 0x0. You can also tell that it's directly accessing the value, instead of a field, since the address isn't 0x20, or some other low, but non-zero address.
This can also happen when you call .pointed on a null CPointer.
117 Views