sceneview-android icon indicating copy to clipboard operation
sceneview-android copied to clipboard

Android Scene compose crash

Open anastr opened this issue 9 months ago • 4 comments

Version 2.2.1

Log

Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x2a8 in tid 14174 (alth.example.com), pid 14174 (alth.example.com)

A crash happened when hiding the Scene compostable

var visible by remember { mutableStateOf(true) }
if (visible) {
    Scene(...)
}
Button(
    onClick = {
        // Crash happened here
        visible = false
    }
) {
    Text("hide")
}

It won't crash if we navigate back, only on hiding compostables.

anastr avatar Jan 14 '25 08:01 anastr