Fixed
Status Update
Comments
ho...@gmail.com <ho...@gmail.com> #2
Jeremy, is this still an issue? I think the problem was that you had two transitions targeting the same View for the same action (e.g. two Slide() transitions).
ro...@google.com <ro...@google.com> #3
I have a similar issue with plain AnimatorSet:
set.start()
set.pause()
set.setCurrentPlayTime(100)
set.setCurrentPlayTime(0)
set.setCurrentPlayTime(100)
set.resume()
doesn't play animation in resume().
ap...@google.com <ap...@google.com> #4
Should clarify that if I filter out setCurrentPlayTime(0)
(or replace it with setCurrentPlayTime(1)
) it works well.
Also even with setCurrentPlayTime(0)
, onAnimationEnd
is notified with correct delay (as if the animation has played).
Description
DataStore Component used:
datastore-core
DataStore Version used:
1.0.0-alpha02
Devices/Android versions reproduced on: Emulator/Pixel 3, API 30
I've created a sample project that demonstrates the issue here:https://github.com/chris-horner/DataStore-Bug
I've written a custom
Serializer
that attempts to encrypt and decrypt the data written to disk. The problem I've run into is that I need to close theOutputStream
provided inwriteTo()
, as I'm making use of Okio'sCipherSink
. Closing the stream is howCipherSink
writes final data to the stream.However closing
OutputStream
causesSingleProcessDataStore
to throw ajava.io.SyncFailedException
when it attempts to invokewith the stracktrace being