-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump target&compile SDK to 35 in the demo app #577
Conversation
📲 You can test the changes from this Pull Request in Gravatar Demo by scanning the QR code below to install the corresponding build.
|
|
||
<!-- Lib activities --> | ||
<activity | ||
android:name="com.yalantis.ucrop.UCropActivity" | ||
android:theme="@style/Theme.AppCompat" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed, so removing to clean things up.
@@ -59,7 +58,6 @@ fun GravatarDemoAppTheme( | |||
if (!view.isInEditMode) { | |||
SideEffect { | |||
val window = (view.context as Activity).window | |||
window.statusBarColor = colorScheme.primary.toArgb() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deprecated.
Column(modifier = Modifier.fillMaxSize()) { | ||
Column(modifier = modifier.fillMaxSize()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed this didn't work well after switching to 35. We should always pass the modifier to the Top level composable, not its children.
299ee3b
to
35d9810
Compare
Description
This should help us catch issues like the one in the uCrop with edge-to-edge enforcement.
Testing Steps
Build the demo app and test it.