Fixed
Status Update
Comments
ma...@google.com <ma...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 27ea2de83c9a53a3f7ebb7e0fbaaac7cc2adeb21
Author: Louis Pullen-Freilich <lpf@google.com>
Date: Mon Jul 06 17:55:59 2020
Moves androidx.ui:ui-animation-core to androidx.compose.animation:animation-core
This CL does not touch package names, or directory structure - only the maven group.
Bug: b/160602714
Bug: b/160233169
Test: ../development/validateComposeModuleMigration.sh androidx.ui:ui-animation-core androidx.compose.animation:animation-core --build
Change-Id: If7b4254191583317fcb03e71c45a35692419bf62
M ui/settings.gradle
M ui/ui-animation-core/build.gradle
M ui/ui-animation-core/samples/build.gradle
M ui/ui-animation/build.gradle
M ui/ui-core/build.gradle
M ui/ui-desktop/build.gradle
M ui/ui-material/build.gradle
https://android-review.googlesource.com/1355649
Branch: androidx-master-dev
commit 27ea2de83c9a53a3f7ebb7e0fbaaac7cc2adeb21
Author: Louis Pullen-Freilich <lpf@google.com>
Date: Mon Jul 06 17:55:59 2020
Moves androidx.ui:ui-animation-core to androidx.compose.animation:animation-core
This CL does not touch package names, or directory structure - only the maven group.
Bug:
Bug:
Test: ../development/validateComposeModuleMigration.sh androidx.ui:ui-animation-core androidx.compose.animation:animation-core --build
Change-Id: If7b4254191583317fcb03e71c45a35692419bf62
M ui/settings.gradle
M ui/ui-animation-core/build.gradle
M ui/ui-animation-core/samples/build.gradle
M ui/ui-animation/build.gradle
M ui/ui-core/build.gradle
M ui/ui-desktop/build.gradle
M ui/ui-material/build.gradle
sh...@google.com <sh...@google.com> #3
As a data point for this issue: going forward, core will likely have more dependencies on the animation primitives (from animation-core). :)
ap...@google.com <ap...@google.com> #4
We were running into a similar circular dependency problem with animated vectors (cc Nader) - vectors live in UI but animated vectors need animation APIs.
Did we consider moving animation
to be a lower group than ui
? We could move the animation clock ambient to animation directly, avoiding the cyclic dependency, and also lets us use animation APIs in the ui library.
It also seems that animateContentSize
makes more sense in the ui
group than animation
.
Description
Jetpack Compose release version:
1.0.0-alpha04
I have the following view:
But when I try to interact with the slider nothing happens. The slider works fine outside of Compose.
When doing some quick debugging (on alpha 3 however) I noticed the touch events that the
RangeSlider
receives looks something like this:ACTION_CANCEL
ACTION_DOWN
ACTION_MOVE
ACTION_CANCEL
Which would explain why it wasn't working but I don't know why it doesn't receive the touch events correctly.