tailscale-android

(★ 2,436)

Tailscale Android Client

File Explorer

  • .gitignore
  • build-tags.sh
  • eclipse-formatter.xml
  • flake.lock
  • flake.nix
  • go.mod
  • go.sum
  • go.toolchain.rev
  • LICENSE
  • Makefile
  • PATENTS
  • README.md
  • version-ldflags.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

adb connect

View Details ▼

Connect to an Android device wirelessly.

adb pair {{ip_address}}:{{port}}

Pair with an Android device (address and pairing code can be found in developer options):

adb connect {{ip_address}}:{{port}}

Connect to an Android device (port will be different from pairing):

adb disconnect {{ip_address}}:{{port}}

Disconnect a device:

🔍

adb install

View Details ▼

Push packages to a connected Android device or emulator.

adb install {{path/to/file}}.apk

Push an Android application to an emulator/device:

adb -s {{serial_number}} install {{path/to/file}}.apk

Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`):

adb install -r {{path/to/file}}.apk

[r]einstall an existing app, keeping its data:

🔍

adb shell

View Details ▼

Run shell commands on a connected Android device or emulator.

adb shell

Start a remote interactive shell on the emulator or device:

tldr {{[-p|--platform]}} android getprop

View documentation for showing Android system properties:

tldr {{[-p|--platform]}} android pm

View documentation for the Android package manager:

🔍

git

View Details ▼

Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.

git init

Create an empty Git repository:

git clone {{https://example.com/repo.git}}

Clone a remote Git repository from the internet:

git status

View the status of the local repository:

🔍

nix develop

View Details ▼

Run a Bash shell that provides the build environment of a derivation.

nix develop {{nixpkgs#pkg}}

Start a shell with all dependencies of a package from nixpkgs available:

nix develop

Start a development shell for the default package in a flake in the current directory:

configurePhase; buildPhase

In that shell, configure and build the sources:

🔍

apt install

View Details ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

// repository documentation