Firefox Application Services
Перейти к файлу
Edouard Oger 118c003682 Fix broken Android test 2019-03-06 17:02:37 -05:00
.circleci Rename some CircleCI jobs 2019-02-25 16:39:51 -05:00
.github Add some basic external-contributor docs. 2019-02-15 14:09:04 +11:00
automation/taskcluster Update the decision_task lib/megazord list (#705) 2019-03-05 11:03:54 -08:00
components Fix broken Android test 2019-03-06 17:02:37 -05:00
docs Document the various methods of passing data between our Rust and callers 2019-02-28 22:27:50 -08:00
gradle/wrapper Pre: Update to Gradle 4.10.2 to work around a publishing issue. 2018-11-15 11:20:46 -08:00
gradle-plugin feat: Add FFI Descriptors and integrate Push Component into Kotlin 2019-03-05 16:29:09 -08:00
libs Android bootstrap script 2019-02-26 20:13:15 -05:00
megazords feat: Add FFI Descriptors and integrate Push Component into Kotlin 2019-03-05 16:29:09 -08:00
samples/sandvich-ios Re-implement the FxA persist callbacks in Swift 2019-02-22 16:27:28 -05:00
testing/sync-test Only expose things that should be pub as pub from sync15 2019-01-22 19:57:04 -08:00
website Update README and split docs into "consumer" and "contributor" docs. 2019-02-05 13:44:48 +11:00
xcconfig Megazord for iOS 2019-02-14 16:37:18 -05:00
.gitignore Use protobuf for fxa_profile return value 2019-02-12 19:09:45 -05:00
.taskcluster.yml Fix TC scopes for "tag" event. 2018-11-27 15:45:19 -08:00
CHANGELOG.md Refactor places connection management (#718) 2019-03-05 12:03:33 -08:00
Cargo.lock feat: Add FFI Descriptors and integrate Push Component into Kotlin 2019-03-05 16:29:09 -08:00
Cargo.toml feat: Add FFI Descriptors and integrate Push Component into Kotlin 2019-03-05 16:29:09 -08:00
Cartfile Use protobuf for fxa_profile return value 2019-02-12 19:09:45 -05:00
LICENSE [license] License application-services repository as MPL2. (Fixes #220) (#233) 2018-09-11 21:28:50 -04:00
README.md Merge pull request #678 from mozilla/basic-contributor-docs; r=thomcc 2019-02-18 13:33:38 +11:00
build-carthage.sh Megazord for iOS 2019-02-14 16:37:18 -05:00
build.gradle Version bump to v0.18.0 2019-02-27 15:54:47 -05:00
gradle.properties [automation/fxa client] Part 1a: Lift Gradle multi-project to top-level. 2018-09-19 11:09:48 -07:00
gradlew [automation/fxa client] Part 1a: Lift Gradle multi-project to top-level. 2018-09-19 11:09:48 -07:00
gradlew.bat [automation/fxa client] Part 1a: Lift Gradle multi-project to top-level. 2018-09-19 11:09:48 -07:00
proguard-rules-consumer-jna.pro Set consumer Proguard rules. 2018-11-27 20:29:10 -08:00
publish.gradle Bump to Android-Gradle plugin 3.2.1. Fixes #484. 2018-12-18 19:15:54 -08:00
settings.gradle feat: Add FFI Descriptors and integrate Push Component into Kotlin 2019-03-05 16:29:09 -08:00

README.md

Firefox Application Services

A platform for building cloud-powered applications that target Firefox users

What's this all about?

This repository hosts the code and docs needed to integrate with the products offered by the Firefox Application Services team.

If you're interested in getting involved in the development of those products then you're in the right place! Please review the more detailed guide on how to contribute to this project as well as the Community Participation Guidelines.

If that's not why you're here, then instead you might enjoy:

Overview

This repository is used to build client-side libraries for integrating with Firefox Application services such as Firefox Accounts, Firefox Sync and Push. Each of these is called a "component" and is built using a core of shared code writen in Rust, wrapped with native language bindings for different platforms.

The end result is an application that can be assembled from re-usable components that are largely shared across platforms, like this:

The code for these components is organized as follows:

For more details on how the client libraries are built and published, please see the Guide to Building a Rust Component.

This repository also hosts the website source for the Application Services Product Portal, which provides consumer-facing documentation on how to integrate with various Application services products.

The ./docs/ directory holds intenal documentation about working with the code in this repository, and is most likely only of interest to contributors.

Components

The currently-available Rust Components in this repo are:

  • fxa-client - for applications that need to sign in with FxA, access encryption keys for sync, and more.
  • sync15 - shared library for accessing data in Firefox Sync
  • logins - for storage and syncing of a user's saved login credentials
  • places - for storage and syncing of a user's saved browsing history
  • push - for applications to receive real-time updates via WebPush
  • rc_log - for connecting component log output to the application's log stream
  • support - low-level utility libraries
    • support/ffi - utilities for building a component's FFI bindings
    • support/sql - utilities for storing data locally with SQL