This patch refactors out the translations controller and interactor to
transition fully to a redux pattern.
Leaving the translations use cases for reference browser usage.
When deleting bookmarks, we do not instantly remove them due to
having the possibility of undoing the deletion. Because of this,
when the bookmarks are pending to delete, they can still be displayed
when pulling down to refresh and then acted on. This patch aims to
fix this issue by subtracting the pending to delete bookmarks
when they are refreshed by pulling down.
Report breadcrumbs to Sentry before crashing with
`UnsatsisfiedLinkError`:
- The files inside the app directory, to detect if the library is
present or not.
- The files inside the APK, to detect if a file inside the APK didn't
get installed correctly.
- The name of the installer package, so that we can know if the APK
was installed from a 3rd-party source.
- The path to the APK. I don't really see this being useful, but it's
needed to determine all the other info, so we might as well report
it.
The idea here is that hopefully one of these will detect that something
was off with their install. For example, maybe they installed an APK
for the wrong arch or maybe `libjnidispatch` was not extracted
correctly. If not, at least we can rule these possibilities out as the
root cause.
"leaf" feature has been removed since [Bug 1571089](https://bugzilla.mozilla.org/show_bug.cgi?id=1571089)
and it's been removed from the presets in that bug as well. This commit
removes this feature from these presets as well to keep them in sync.
Note that having an unrecognised feature gets ignored automatically and
it doesn't throw any error, but still these presets should kept up-to-date.
* Update GeckoView (Nightly) to 124.0.20240123053648.
* Update Glean to 56.1.0.
* Bug 1870050 - Properly define buildConfigField SUPPORTED_LOCALE_ARRAY
This was previously generated as a side effect, and fails with the new AGP version.
See also https://github.com/mozilla-mobile/fenix/issues/14175.
---------
Co-authored-by: MickeyMoz <sebastian@mozilla.com>
Co-authored-by: mcarare <48995920+mcarare@users.noreply.github.com>
Co-authored-by: dsmithpadilla <88508950+dsmithpadilla@users.noreply.github.com>
The touching area for search engine icon (Google by default) from
the search bar was only 28dp.
To Increase tap area to reach the minimum accessibility touch target
size of 48dp, it was used TouchDelegate. This way there are no visual
changes.
Before, the orientation was taken from the application context which
didn't update during orientation change. Which caused to load the wrong
wallpaper when the phone was rotated. With these changes we can send
the correct orientation taken from the HomeActivity context.