Welcome to Firefly
Switch language
Firefly Docsss
Last Updated: 2026-08-25 09:48:18

Use of ADB

Connect the device

USB way

The host connects to the device via USB. For details on how to connect, please refer to the WiKi Tutorial of the device.

  • USB Type A interface

    • Enable USB connection

      • Android7.1

      Settings-->USB-->Connect to PC

      • Android10/Android11

      Settings-->Connected devices-->Connect to PC

  • USB Type C interface (enabled by default)

Network way

The host connects to the device through the network (the host and the device are in the same LAN)

  • Open network ADB

  • View the IP address of the device

    Settings-->About tablet-->Status->IP address

  • Connect to device via IP address

    adb connect device_ip_address

Common commands

  • Query device

    adb devices
  • Stop adb server

    adb kill-server
  • Install the app

    adb install path_to_apk
  • Copy files to device

    adb push local remote
  • Copy files from device

    adb pull remote local
  • Issue shell commands

    adb [-d |-e | -s serial_number] shell shell_command

On this page