×
Inicio Aleatorio

adb (Android Debug Bridge)

Sección: Android

Creado: 15-11-24 (Actualizado: 07-10-18)

sudo apt install android-tools-adb

Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device (an emulator or a connected Android device). The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device. It is a client-server program that includes three components:

Over Wifi

connect usb

adb tcpip 5555
adb connect 192.168.1.x

 

Llamar y colgar

adb shell am start -a android.intent.action.CALL -d tel:
adb shell input keyevent KEYCODE_ENDCALL

Siguiente Publicación