tailscale-android

(★ 2,436)

Tailscale Android Client

파일 탐색기

  • .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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

adb connect

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

분산 버전 관리 시스템.
`commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다.
더 많은 정보: <https://git-scm.com/docs/git>.

git init

하위 명령어 실행:

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

특정 레파지토리 위치에서 Git 하위 명령어 실행:

git status

주어진 설정으로 Git 하위 명령어 실행:

🔍

nix develop

설명 보기 ▼

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

설명 보기 ▼

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