sceneview-android
                                
                                 sceneview-android copied to clipboard
                                
                                    sceneview-android copied to clipboard
                            
                            
                            
                        Android Scene compose crash
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.