The iOS Browser that plants trees.
!!! This project cannot be built by anyone outside of Ecosia (yet). !!!
There are dependencies that are not fully disclosed and thereby not available for the build. We are working on this. We'll update this note as soon we are able to ship the closed sources in binary form.
Ecosia for iOS is based on a fork of the code of "Firefox for iOS". We want to express our gratitude to all the original contributors and Mozilla for releasing your code to the world.
This branch works with Xcode 14.3
π§ Note: For building on Apple Silicon, make sure you have selected the Rosetta-based Simulators from Xcode list of devices.
-
Install the latest Xcode developer tools from Apple.
-
Install, Brew, Node, and a Python3 virtualenv for localization scripts:
brew update brew install node pip3 install virtualenv
-
Clone the repository:
git clone [email protected]:ecosia/ios-browser.git
-
Install Node.js dependencies, build user scripts and update content blocker:
cd ios-browser sh ./bootstrap.sh
- If you run into a problem related to
content-blocker-lib-ios
, check the troubleshooting section here.
- If you run into a problem related to
-
Open the project
open Client.xcodeproj
Build error: iPhone 14 Pro supports emulating this architecture, but the emuluation support software is not installed
Reason: Rosetta 2 needs to be installed
Fix: Open an app that needs Rosetta and you will be requested to install it. See this link.
Build error: content-blocker-lib-ios/Lists/some-file.json: No such file or directory
Reason: If you get this error while building the project, probably something went wrong when running the content_blocker_update.sh
script (which also runs as a step in bootstrap.sh
).
In case the error was due to xcrun: error: unable to lookup item 'PlatformPath'
, you might have the incorrect xcode sdk path. You can check it by running xcrun --show-sdk-path --sdk macosx
, if it shows /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
it is incorrect.
Fix: Switch the default SDK location by running sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
.
The app is equipped by two custom Build Configurations for ad-hoc distribution over TestFlight and AppCenter.
The Development_
prefix added to those two, serves the purpose of picking the correct Core
module build configuration.
Fastlane is used to push builds to the Appstore and to manage our certs and profiles. Follow the docs to install. We recommend to use fastlane with bundler.
gem install bundler
bundle update
The CURRENT_PROJECT_VERSION
being set to 0
indicates that it is not being used for local testing. The outcoming build number is updated by the CI, matching the CI run number (e.g. 8023
).
Our certs and profiles are managed centrally by fastlane match. Find the repo here
Run bundle exec fastlane match --readonly
to add certs and profiles to your system. You can append -p "keychain password"
to avoid keychain prompts during the process. The passphrase to decrypt the repo can be found in LastPass.
As we use fastlane match
to hardwire profiles it gets a bit tricky to add a new device and run the app via your machine.
- Plugin your device and add it to the portal via XCode-Prompt.
- Login into AppDeveloper Portal
- Navigate to
Certificates, Identifiers & Profiles
- Select
Profiles
-Tab and findmatch Development com.ecosia.ecosiaapp
- Edit it and make sure your device is selected
- Save, download and double click the Profile
- Now XCode should find it as it's in your keychain
- Run on Device!
We are using Transifex for managing our translations.
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
[https://www.transifex.com]
api_hostname = https://api.transifex.com
hostname = https://www.transifex.com
username = <vault secret>
password = <vault secret>
rest_hostname = https://rest.api.transifex.com
token = <vault secret>
Pulling translation from the web
tx pull -fs
Test and commit the new translations. There exists schemes for testing other languages in the simulator.
- Pull the source file
- Add the new strings to the English source file
Client/Ecosia/L10N/en.lproj/Ecosia.strings
- Push it to Transifex
tx pull -fs
tx push -s
We do a rebrand of the Strings from Mozilla. Usually this step is only needed after an upgrade as we keep our changes in version control (as of opposite to Mozilla). First we need to import all the strings via the scripts:
# clone the repo
git clone https://github.com/mozilla-mobile/ios-l10n-scripts.git
# run the script in project-dir
./ios-l10n-scripts/import-locales-firefox.sh --release
After import we rebrand (aka "ecosify")
# brand all the files as they contain the term 'Firefox' a lot
python3 ecosify-strings.py Client
python3 ecosify-strings.py Extensions
python3 ecosify-strings.py Shared
Follow the instructions from our confluence page
Make sure that fastlane
and transifex
-cli is installed.
βΉοΈ Updating the source file in the project and merging it into
main
will automatically push it to Transifex as well since the Github integration is in place
-
Make sure that an inflight version exists in AppStore Connect. If not, create one.
-
Add English text to release notes in AppStore Connect
-
Download metadata from AppStore specifying the inflight version
bundle exec fastlane deliver download_metadata --app-version 8.2.0
-
Merge the code to main via a PR (The transifex integration will pick up the push)
-
Wait for translators β³
-
Make sure that all languages are translated in the transifex web interface and found their way to
main
-
Verify the translations in the Transifex-made PR
-
Squash and Merge the PR
-
The GitHub Action Workflow
Upload release notes to AppStore
will take care of the upload
-
Push via the update translation via
deliver
to the AppStorebundle exec fastlane deliver --app-version 8.2.0