Fixed
Status Update
Comments
wu...@google.com <wu...@google.com> #2
It's failing when accessing androidx.navigation.compose.BackStackEntryIdViewModel
wu...@google.com <wu...@google.com>
we...@google.com <we...@google.com> #4
Reproducible with navigation-compose:2.4.0-beta02, without hilt.
ap...@google.com <ap...@google.com> #5
Could be related to this change
api("androidx.navigation:navigation-runtime:2.4.0-alpha10")
Description
CAMERAX VERSION (ex - 1.1.0-beta01) ANDROID OS BUILD NUMBER: Android 7.1.1
DEVICE NAME: (Meizu 15)
DESCRIPTION: i want to freeze preview when taking picture so i call
cameraProvider?.unbind(preview)
imageCapture?.takePicture(builder, Executors.newSingleThreadExecutor(), callback)
OBSERVED RESULTS: freeze preview but can not take picture
EXPECTED RESULTS: freeze preview and take picture
REPRODUCIBILITY: 5 of 5
ADDITIONAL INFORMATION:
if i add this line:
cameraProvider?.unbind(preview)
here:i've got:
and little different ImageCaptureException with my personal implementation, but same result (just stop preview and then take picture)
but if i wait 50 ms for take picture, all works:
cameraProvider?.unbind(preview)
postDelayed( imageCapture?.takePicture.. , 50)
so. how i can correct freeze preview for user when i taking picture?
am i need to
this both solutions does not look like really correct