-
Notifications
You must be signed in to change notification settings - Fork 189
Update Android Components to 20260518093736 and handle breaking changes #4307
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,7 +97,7 @@ class ToolbarIntegration( | |
| contentDescription = "Stop", | ||
| icon = DrawableMenuIcon( | ||
| context, | ||
| mozilla.components.ui.icons.R.drawable.mozac_ic_stop, | ||
| mozilla.components.ui.icons.R.drawable.mozac_ic_cross_24, | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same change as for Fenix - https://phabricator.services.mozilla.com/D300519 |
||
| tint = tint, | ||
| ), | ||
| ) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,7 @@ | |
| android:padding="16dp" | ||
| android:text="@string/mozac_feature_addons_settings" | ||
| android:textSize="18sp" | ||
| app:drawableStartCompat="@drawable/mozac_ic_preferences" | ||
| app:drawableStartCompat="@drawable/mozac_ic_settings_24" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same change as for Fenix - https://phabricator.services.mozilla.com/D300514 |
||
| app:drawableTint="@color/icons" /> | ||
|
|
||
| <TextView | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -71,7 +71,7 @@ | |
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_gravity="end|bottom" | ||
| android:src="@drawable/mozac_ic_font" | ||
| android:src="@drawable/mozac_ic_reader_view_24" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same change as for Fenix - https://phabricator.services.mozilla.com/D300515 |
||
| android:contentDescription="@string/reader_view_appearance_button" | ||
| android:visibility="gone" | ||
| android:layout_marginRight="16dp" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
Replaced the exhaustive when check with a simpler if check here
Since there is no immediate plan to support
WebExtensionPromptRequest.InstallationRequestedin RB also.Future
WebExtensionPromptRequestchanges will need to be handled in the belowhandlePermissionsso new changes will require thinking about how to handle them in RB so this change will not lead to ignoring all future updates.