Files
tubestation/mobile/android/android-components/components/browser/engine-gecko
Greg Stoll 7d02b55995 Bug 1877237 - autofill "confirm password" field when registering a new password r=geckoview-reviewers,android-reviewers,boek,owlish
When a login choice was made, the Hint associated with it was lost, so recalculate it and pass it to the LoginSelectOption constructor.

Differential Revision: https://phabricator.services.mozilla.com/D209898
2024-05-18 00:58:05 +00:00
..

Android Components > Browser > Engine-Gecko

Engine implementation based on GeckoView.

Usage

Setting up the dependency

Use Gradle to download the library from maven.mozilla.org (Setup repository):

implementation "org.mozilla.components:browser-engine-gecko:{latest-version}"

Integration with the Glean SDK

Before using this component

Products sending telemetry and using this component must request a data-review following this process.

The Glean SDK can be used to collect Gecko Telemetry. Applications using both this component and the Glean SDK should setup the Gecko Telemetry delegate as shown below:

    val builder = GeckoRuntimeSettings.Builder()
    val runtimeSettings = builder
        .telemetryDelegate(GeckoGleanAdapter()) // Sets up the delegate!
        .build()
    // Create the Gecko runtime.
    GeckoRuntime.create(context, runtimeSettings)

Adding new metrics

New Gecko metrics can be added as described in the Firefox Telemetry docs.

License

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/