Skip to content

Android Scene compose crash  #589

@anastr

Description

@anastr

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions