Verified
Status Update
Comments
il...@google.com <il...@google.com> #2
We’ve shared this with our product and engineering teams and will continue to provide updates as more information becomes available.
ga...@google.com <ga...@google.com> #3
It's extremely frustrating that it's apparently now impossible on android 13 to write to data/obb without rooting devices. People hated this change in 11, hated it in 12, and now it's been done again. Please let us access the device we payed for. No one asked for this change.
ap...@google.com <ap...@google.com> #4
@3 It got even worse, as there is a bug that installer apps seem not to be able to do it anymore:
https://issuetracker.google.com/issues/254445476
ap...@google.com <ap...@google.com> #5
Extremely disappointing that google censored the original issue on this with over 2000 stars.
ap...@google.com <ap...@google.com> #6
Old issue was https://issuetracker.google.com/issues/196422354 and can't be accessed by the general public any more for some reason.
jb...@google.com <jb...@google.com> #7
Android/data No access to Debug File... Even as a Developer on a Non-Rooted Device. i just trying to make an App work again. but the Edits Need to Happen the Device even USB Debugging Prevents Write Access.. just Read...
if this Issue is not Resolved Soon. I will (I dont Know) but i paid over 1500.00 for a Device and i cant Access the Stuff i want.... and Articles that i used back A.11 Days are now Denied Access... KB196422354
Android 13 is a Joke if it Prevents People from Technical Experence from Doing what they want heck thats what the Developer Mode was For. now you have Bricked us again...
if this Issue is not Resolved Soon. I will (I dont Know) but i paid over 1500.00 for a Device and i cant Access the Stuff i want.... and Articles that i used back A.11 Days are now Denied Access... KB196422354
Android 13 is a Joke if it Prevents People from Technical Experence from Doing what they want heck thats what the Developer Mode was For. now you have Bricked us again...
Description
Component used: activity-compose -
PredictiveBackHandler
Right now, when getting the progress events, you can tell the
touchX
andtouchY
and the progress, but you’d need to manually track the velocity to understand the velocity with which a gesture is performed.I’d like this velocity to be able to use
animateDecay
, oranimateTo()
onAnimatable
, to be able to smoothly finish the animation from where it left off. To do this, I’ve addedVelocityTracker
, but the BackEvent doesn’t containuptimeMillis
, leading me to useSystem.currentTimeMillis
, which could be inaccurate if an event comes in a different order.