Skip to content

walkingice/android-components

 
 

Repository files navigation

Android components

Task Status Build Status codecov

A collection of Android libraries to build browsers or browser-like applications.

For more information see the website.

Getting Involved

We encourage you to participate in this open source project. We love pull requests, bug reports, ideas, (security) code reviews or any kind of positive contribution.

Before you attempt to make a contribution please read the Community Participation Guidelines.

Architecture and Overview

Our main design goal is to provide independently reusable Android components. We strive to keep dependencies between components as minimal as possible. However, standalone components aren't always feasible, which is why we have grouped components based on their interactions and dependencies.

On the lowest level, we provide standalone UI components (e.g. autocomplete, progressbar, colors) as well as independent service and suppport libraries (e.g. Telemetry, Kotlin extensions and Utilities).

The second level consist of so called Concept modules. These are abstractions that describe contracts for component implementations such as Engine or Session Storage, which may in turn have multiple implementations. The purpose of these concepts is to allow for customization and pluggability. Therefore, where available, components should always depend on concept modules (not their implementations) to support bringing in alternative implementations.

On top of Concept modules we provide Browser components. These components provide browser-specific functionality by implementing concepts and using lower level components.

On the highest level, we provide Feature components which provide use case implementations (e.g search, load URL). Features can connect multiple Browser components with concepts, and will therefore depend on other components.

The following diagram does not contain all available components. See Components for a complete and up-to-date list.

    ┌─────────────────────┬───────────────────────────────────────────────────────────────────────┐
    │                     │ ┌───────────────────────────────────────────────────────────────────┐ │
    │                     │ │                              Feature                              │ │
    │  Features combine   │ │ ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─   ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─  │ │
    │ browser components  │ │       Session      │         Toolbar      │         Search      │ │ │
    │    with concepts    │ │ └ ─ ─ ─ ─ ─ ─ ─ ─ ─    └ ─ ─ ─ ─ ─ ─ ─ ─ ─   └ ─ ─ ─ ─ ─ ─ ─ ─ ─  │ │
    │                     │ └───────────────────────────────────────────────────────────────────┘ │
    ├─────────────────────┼───────────────────────────────────────────────────────────────────────┤
    │                     │ ┌───────────────────────────────────────────────────────────────────┐ │
    │                     │ │                              Browser                              │ │
    │ Browser components  │ │ ┌ ─ ─ ─ ─ ─ ─ ┐ ┌ ─ ─ ─ ─ ─ ─ ┐  ┌ ─ ─ ─ ─ ─ ─ ┐  ┌ ─ ─ ─ ─ ─ ─ ┐ │ │
    │   may implement     │ │  Engine-Gecko       Search           Toolbar        Errorpages    │ │
    │  concepts and use   │ │ └ ─ ─ ─ ─ ─ ─ ┘ └ ─ ─ ─ ─ ─ ─ ┘  └ ─ ─ ─ ─ ─ ─ ┘  └ ─ ─ ─ ─ ─ ─ ┘ │ │
    │    lower level      │ │ ┌ ─ ─ ─ ─ ─ ─ ┐ ┌ ─ ─ ─ ─ ─ ─ ┐  ┌ ─ ─ ─ ─ ─ ─ ┐  ┌ ─ ─ ─ ─ ─ ─ ┐ │ │
    │     components      │ │  Engine-System      Session          Domains           Menu       │ │
    │                     │ │ └ ─ ─ ─ ─ ─ ─ ┘ └ ─ ─ ─ ─ ─ ─ ┘  └ ─ ─ ─ ─ ─ ─ ┘  └ ─ ─ ─ ─ ─ ─ ┘ │ │
    │                     │ └───────────────────────────────────────────────────────────────────┘ │
    ├─────────────────────┼───────────────────────────────────────────────────────────────────────┤
    │                     │ ┌───────────────────────────────────────────────────────────────────┐ │
    │  Abstractions and   │ │                              Concept                              │ │
    │   contracts for     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │     component       │ │               Engine          │             Toolbar          │    │ │
    │  implementations    │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ └───────────────────────────────────────────────────────────────────┘ │
    ├─────────────────────├───────────────────────────────────────────────────────────────────────┤
    │                     │ ┌────────────────────────────────┐ ┌────────────────────────────────┐ │
    │                     │ │               UI               │ │            Service             │ │
    │     Standalone      │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │     components      │ │          Autocomplete     │    │ │           Telemetry       │    │ │
    │                     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ └────────────────────────────────┘ │
    │                     │ │            Progress       │    │ ┌────────────────────────────────┐ │
    │                     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │            Support             │ │
    │                     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ │             Colors        │    │ │       Kotlin extensions   │    │ │
    │                     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ │             Fonts         │    │ │           Utilities       │    │ │
    │                     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │
    │                     │ │    ┌ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │                                │ │
    │                     │ │             Icons         │    │ │                                │ │
    │                     │ │    └ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─     │ │                                │ │
    │                     │ └────────────────────────────────┘ └────────────────────────────────┘ │
    └─────────────────────┴───────────────────────────────────────────────────────────────────────┘

Components

  • 🔴 In Development - Not ready to be used in shipping products.
  • Preview - This component is almost/partially ready and can be tested in products.
  • 🔵 Production ready - Used by shipping products.

Our artifacts live in maven.mozilla.org remember to add it in your root build.gradle file:

repositories {
  maven {
   url "https://maven.mozilla.org/maven2"
  }
}

Browser

High-level components for building browser(-like) apps.

  • 🔵 Domains Localized and customizable domain lists for auto-completion in browsers.

  • 🔴 Engine-Gecko - Engine implementation based on GeckoView (Release channel).

  • 🔴 Engine-Gecko-Beta - Engine implementation based on GeckoView (Beta channel).

  • 🔴 Engine-Gecko-Nightly - Engine implementation based on GeckoView (Nightly channel).

  • 🔴 Engine-Servo - Engine implementation based on the Servo Browser Engine.

  • Engine-System - Engine implementation based on the system's WebView.

  • Errorpages - Responsive browser error pages for Android apps.

  • 🔴 Menu - A generic menu with customizable items primarily for browser toolbars.

  • 🔵 Search - Search plugins and companion code to load, parse and use them.

  • Session - A generic representation of a browser session.

  • 🔴 Tabstray - A customizable tabs tray for browsers.

  • Toolbar - A customizable toolbar for browsers.

Concept

API contracts and abstraction layers for browser components.

  • 🔴 Engine - Abstraction layer that allows hiding the actual browser engine implementation.

  • 🔴 Tabstray - Abstract definition of a tabs tray component.

  • Toolbar - Abstract definition of a browser toolbar component.

Feature

Combined components to implement feature-specific use cases.

  • 🔴 Downloads - A component to perform downloads using the Android downloads manager.

  • 🔴 Intent - A component that provides intent processing functionality by combining various other feature modules.

  • 🔴 Search - A component that connects an (concept) engine implementation with the browser search module.

  • 🔴 Session - A component that connects an (concept) engine implementation with the browser session module.

  • 🔴 Tabs - A component that connects a tabs tray implementation with the session and toolbar modules.

  • 🔴 Toolbar - A component that connects a (concept) toolbar implementation with the browser session module.

UI

Generic low-level UI components for building apps.

  • 🔵 Autocomplete - A set of components to provide autocomplete functionality.

  • 🔵 Colors - The standard set of Photon colors.

  • 🔵 Fonts - The standard set of fonts used by Mozilla Android products.

  • 🔵 Icons - A collection of often used browser icons.

  • 🔵 Progress - An animated progress bar following the Photon Design System.

  • Tabcounter - A button that shows the current tab count and can animate state changes.

Service

Components and libraries to interact with backend services.

  • 🔵 Firefox Accounts (FxA) - A library for integrating with Firefox Accounts.

  • 🔴 Firefox Sync - Logins - A library for integrating with Firefox Sync - Logins.

  • Fretboard - An Android framework for segmenting users in order to run A/B tests and roll out features gradually.

  • 🔴 Glean - A client-side telemetry SDK for collecting metrics and sending them to Mozilla's telemetry service (eventually replacing service-telemetry).

  • 🔵 Telemetry - A generic library for sending telemetry pings from Android applications to Mozilla's telemetry service.

Support

Supporting components with generic helper code.

  • Base - Base component containing building blocks for components.

  • 🔵 Ktx - A set of Kotlin extensions on top of the Android framework and Kotlin standard library.

  • Test - A collection of helpers for testing components.

  • 🔵 Utils - Generic utility classes to be shared between projects.

Standalone libraries

  • Crash - A generic crash reporter component that can report crashes to multiple services.

  • 🔴 Dataprotect - A component using AndroidKeyStore to protect user data.

  • JEXL - Javascript Expression Language: Context-based expression parser and evaluator.

Tooling

  • 🔵 Lint - Custom Lint rules for the components repository.

Sample apps

Sample apps using various components.

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/

About

A collection of Android libraries to build browsers or browser-like applications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 83.7%
  • Java 14.1%
  • Python 1.6%
  • CSS 0.3%
  • Dockerfile 0.2%
  • HTML 0.1%