-
Notifications
You must be signed in to change notification settings - Fork 4
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
ANDROID-15581 Upgrade material lib & do not expose internal dependencies as api #402
base: main
Are you sure you want to change the base?
Conversation
@@ -64,25 +65,25 @@ fun Tags() { | |||
.padding(top = 16.dp) | |||
.height(60.dp) | |||
) { | |||
Tag(text = "Inverse", style = TagView.TYPE_INVERSE, modifier = Modifier.padding(8.dp), icon = android.R.drawable.ic_lock_power_off) |
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.
Android resource not available in older api levels, this was crashing when opening the catalog in an api 24 device.
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.
Wow cool
library/build.gradle
Outdated
api 'androidx.constraintlayout:constraintlayout-solver:2.0.4' | ||
api 'androidx.recyclerview:recyclerview:1.1.0' | ||
api "androidx.compose.runtime:runtime:$compose_ui_version" | ||
implementation "com.google.android.material:material:1.12.0" |
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.
Do not expose internal dependencies as api, if applications needs them, apps should declare them explicitly.
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.
🚀
📱 New catalog for testing generated: Download |
@yceballost nothing needed to review, just need the approval to follow the process :) |
🥅 What's the goal?
Related to https://jira.tid.es/browse/ANDROID-15454. Upgrade material lib in mistica, which is used by android-messenger.
Tagged as breaking change because it does not exposes anymore the internal libraries as api, so apps may need to declare their dependencies explicitly.
🚧 How do we do it?
☑️ Checks
🧪 How can I test this?