Skip to content

lpusok/firefox-ios

This branch is 4764 commits behind mozilla-mobile/firefox-ios:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Jan 12, 2024
Feb 21, 2023
Jan 25, 2024
Jan 22, 2024
Dec 15, 2023
Jan 31, 2023
Jan 25, 2024
Jan 24, 2024
Jan 22, 2024
Sep 28, 2023
Sep 29, 2016
Jan 12, 2024
Jun 20, 2023
Jan 15, 2024
Jan 18, 2024
Dec 20, 2023
Dec 20, 2023
Dec 20, 2023
May 26, 2021
Jan 8, 2024
Oct 13, 2017
Apr 16, 2019
Jan 31, 2022
Nov 4, 2014
Jul 13, 2023
Jun 2, 2023
Jun 2, 2023
Jan 10, 2024
Jan 22, 2024
Dec 20, 2023
Dec 20, 2023
Jan 19, 2024
Nov 6, 2023
Nov 6, 2023
Dec 20, 2023
Jan 24, 2023
Dec 20, 2023
Dec 20, 2023

Repository files navigation

Firefox for iOS codebeat badge codecov

Download on the App Store.

This branch (main)

This branch works with Xcode 15.2, Swift 5.8 and supports iOS 17.2 and above.

Please make sure you aim your pull requests in the right direction.

For bug fixes and features for a specific release, use the version branch.

Getting involved

We encourage you to participate in this open source project. We love Pull Requests, Issue Reports, Feature Requests or any kind of positive contribution. Please read the Mozilla Community Participation Guidelines and our Contributing guidelines first.

If more information is required or you have any questions then we suggest reaching out to us via:

  • Chat on Element channel #fx-ios for general discussion, or write DMs to specific teammates for questions.
  • Open a Github discussion which can be used for general questions.

Want to contribute on the codebase but don't know where to start? Here is a list of issues that are contributor friendly, but make sure to read the Contributing guidelines first.

Building the code

  1. Install the latest Xcode developer tools from Apple.
  2. Install, Brew, Node, and a Python3 virtualenv for localization scripts:
    brew update
    brew install node
    pip3 install virtualenv
  3. Clone the repository:
    git clone https://github.com/mozilla-mobile/firefox-ios
  4. Install Node.js dependencies, build user scripts and update content blocker:
    cd firefox-ios
    sh ./bootstrap.sh
  5. Open the Client.xcodeproj under the firefox-ios folder in Xcode.
  6. Make sure to select the Fennec scheme in Xcode.
  7. Select the destination device you want to build on.
  8. Run the app with Cmd + R or by pressing the build and run button.

⚠️ Important: In case you have dependencies issues with SPM, please try the following:

  • Xcode -> File -> Packages -> Reset Package Caches

Building User Scripts

User Scripts (JavaScript injected into the WKWebView) are compiled, concatenated, and minified using webpack. User Scripts to be aggregated are placed in the following directories:

/Client
|-- /Frontend
    |-- /UserContent
        |-- /UserScripts
            |-- /AllFrames
            |   |-- /AtDocumentEnd
            |   |-- /AtDocumentStart
            |-- /MainFrame
                |-- /AtDocumentEnd
                |-- /AtDocumentStart

This reduces the total possible number of User Scripts down to four. The compiled output from concatenating and minifying the User Scripts placed in these folders resides in /Client/Assets and are named accordingly:

  • AllFramesAtDocumentEnd.js
  • AllFramesAtDocumentStart.js
  • MainFrameAtDocumentEnd.js
  • MainFrameAtDocumentStart.js

To simplify the build process, these compiled files are checked-in to this repository. When adding or editing User Scripts, these files can be re-compiled with webpack manually. This requires Node.js to be installed, and all required npm packages can be installed by running npm install in the project's root directory. User Scripts can be compiled by running the following npm command in the root directory of the project:

npm run build

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 https://mozilla.org/MPL/2.0/

About

Firefox for iOS

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 90.5%
  • JavaScript 5.4%
  • HTML 2.3%
  • Python 1.1%
  • Shell 0.3%
  • CSS 0.2%
  • Other 0.2%