Status Update
Comments
gu...@google.com <gu...@google.com> #2
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
st...@google.com <st...@google.com>
st...@google.com <st...@google.com>
st...@google.com <st...@google.com>
ap...@google.com <ap...@google.com> #3
Tested on Android 12 Emulator with custom executor, but cannot repro this issue.
ro...@google.com <ro...@google.com>
na...@google.com <na...@google.com> #4
-
Second crash in the description is from a real device. Experienced it myself on two different Xiaomi phones, plus lots of crashes from users in the Google Play console.
-
Dynamic features are not used in the application.
As a wild guess, I have downgraded build tools from 31.0.0 to 30.0.3, compileSdk from 31 to 30, and moved all work with Language ID to the service in a separate process (just to be sure that crash can kill secondary process instead of main). This combination is in beta for 2 days by now and I don't see any SIGSEGV crashes.
na...@google.com <na...@google.com> #5
Hmm, I feel the crash might be something related to separate/secondary process.
I also changed compileSdk and targetSDK to 31 but still cannot repro this issue.
Description
Function
rememberPickerState
is returning same instance ofPickerState
after recomposition, even when the input has changed.It looks like the issue is because line .
rememberPickerState
is not passing its parameters (initialNumberOfOptions
,initiallySelectedOption
andrepeatItems
) torememberSaveable
function in thisComponent used: rememberPickerState
Version used: 1.0.2
Devices/Android versions reproduced on: N/A
If this is a bug in the library, we would appreciate if you could attach:
I've added unit tests in this commit showing the issue and a proposed solution:https://github.com/luizgrp/horologist/blob/2be07856616edd7a3f833b96b706339897da10ab/sample/src/androidTest/java/androidx/wear/compose/material/PickerTest.kt
testOriginalFunction
test shows that after changing the value ofviewModel. _selectedOption
,MyComposable
does NOT show the new value.testFunctionWithFix
shows that after changing the value ofviewModel. _selectedOption
,MyComposableFixed
shows the new value.rememberPickerStateFixed
is the proposed fix for this issue.This issue was reported by a Googler while using Horologist's TimePicker. The value displayed on the TimePicker is not changing after the values are changed in the ViewModel. To demonstrate that on a simple screen, please see the video attached.
A simple composable displays the hash code value of two
PickerState
objects when the input value is changed, after recomposition. The first line uses the currentrememberPickerState
and the hash code does not change. The second line usesrememberPickerStateFixed
and the hash code changes.