wootz-browser icon indicating copy to clipboard operation
wootz-browser copied to clipboard

Chromium fork for people to earn through data labeling.

Logo WootzApp

WootzApp

Check out the official website: https://www.wootzapp.com/

Installation Steps:


Install depot_tools

Clone the depot_tools repository:

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git

Add depot_tools to the end of your PATH (you will probably want to put this in your ~/.bashrc or ~/.zshrc). Assuming you cloned depot_tools to /path/to/depot_tools:

export PATH="$PATH:/path/to/depot_tools"

Get the code

Clone the github repo:

git clone https://github.com/wootzapp/wootz-browser.git

Now move to src directory cd src, then execute these steps:

gclient sync

Install additional build dependencies

Now run:

build/install-build-deps.sh --android

Once you've run install-build-deps at least once, you can now run the Chromium-specific hooks, which will download additional binaries and other things you might need:

Run Hooks

gclient runhooks

Setting up the build

gn args out/Default

Edit the args.gn file to contain the following arguments:

target_os = "android"
target_cpu = "arm64"

Build WootzApp

Build WootzApp with Ninja using the command:

autoninja -C out/Default chrome_public_apk

And deploy it to your Android device:

out/Default/bin/chrome_public_apk install

Documentation in the source is rooted in docs/README.md.

Learn how to Get Around the Chromium Source Code Directory Structure.