Codebase list google-nexus-tools / run/6d527e1b-6c4e-407e-a804-464049c08503/main
run/6d527e1b-6c4e-407e-a804-464049c08503/main

Tree @run/6d527e1b-6c4e-407e-a804-464049c08503/main (Download .tar.gz)

Nexus Tools

Nexus Tools is an installer for the Android SDK Platform Tools package, which includes ADB, Fastboot, and other applications. Nexus Tools is writen in Dart, and can run on Linux, macOS, Windows, Windows Subsystem for Linux, and Chrome OS.

Nexus Tools downloads the latest Platform tools package directly from Google's servers (so you're always getting the latest version), saves them to ~/.nexustools ($Home\NexusTools on Windows), and adds the directory to your system's path. On Windows, Nexus Tools can optionally install Koush's Universal ADB Driver.

Once Nexus Tools is finished, you can run adb, fastboot, and other commands with no problems. You need to open a new terminal/command line window after installation for changes to take effect. The SDK Platform Tools can be updated by running nexustools -i, or you can uninstall everything by running nexustools -r.

Featured on MakeUseOf, XDA, Android Police, 9to5Google, Wccftech, Redmond Pie, and others!

How to use on Linux, macOS, and Chrome OS

Paste this command into the Terminal app:

bash <(curl -s https://raw.githubusercontent.com/corbindavenport/nexus-tools/master/install.sh)

You can also download the Mac and Linux versions from the latest release page, un-zip the file, and run it from the Terminal.

How to use on Windows

Open Windows PowerShell from the Start Menu and paste this command:

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/corbindavenport/nexus-tools/master/install.ps1'))

You can also download the Windows version from the latest release page, un-zip the file, and run it from Windows PowerShell or the Command Prompt.

Compatibility

The Nexus Tools installer is compiled as an x86_64 (64-bit x86) application for macOS, x86_64 Linux, and Windows. It can run in the Rosetta 2 compatibility layer on Macs with Apple Silicon chips, like M1 and M2. It also works on ARM Windows 10 and 11 through the WOW64 translation layer.

ADB, Fastboot, and other applications in the Platform Tools package are compiled for x86_64 on Windows and Linux. The Mac versions are Universal Binaries, so they run natively on both Intel and Apple Silicon Mac computers.

Analytics

Nexus Tools uses Plausible Analytics to transmit your operating system and CPU architecture during the installation process. This data is not sold or shared in any way, it's only for me to know which hardware platforms I should focus my attention on. You can disable analytics reporting by adding the --no-analytics parameter to the install command, like this:

bash <(curl -s https://raw.githubusercontent.com/corbindavenport/nexus-tools/master/install.sh) --no-analytics

It also works when running Nexus Tools locally:

nexustools --no-analytics

This analytics data is viewable publicly at plausible.io/nexustools.corbin.io.

Development info

Nexus Tools is written in Dart, so you need the Dart SDK to work on it. You can run Nexus Tools from source like this:

dart ./bin/main.dart

The compile.sh (macOS and Linux) and compile.ps1 scripts create executables and zip them. You can also use GitHub Actions to compile Nexus Tools, by navigating to Actions > Compile Nexus Tools > Run workflow.