OS: Android ADB

From OnnoWiki
Jump to navigation Jump to search

Android Debug Bridge (adb) adalah tool command line serbaguna yang memungkinkan anda berkomunikasi dengan perangkat (emulator atau perangkat Android yang terhubung). Perintah adb memfasilitasi berbagai tindakan perangkat, seperti memasang dan debugging aplikasi, dan ini menyediakan akses ke shell Unix yang dapat anda gunakan untuk menjalankan berbagai perintah pada perangkat.


Cek Sambungan

Konfirmasi bahwa host komputer kita tersambunge ke target device:

$ adb devices
List of devices attached

atau

$ adb devices -l


Bootloader

Ubah device agar berada di fastboot mode baik secara manual dengan menekan kombinasi tombol yang tepat saat booting, atau dari shell menggunakan perintah,

$ adb reboot bootloader


Wipe Data

Dengan fastboot

adb devices       # Check the phone is running
adb reboot bootloader
# Wait a few seconds
fastboot devices  # Check the phone is in bootloader
fastboot -w  


Wipe Data

Tidak semua handphone bisa root

adb root
adb shell am broadcast -a android.intent.action.MASTER_CLEAR


Wipe Data

adb shell
recovery --wipe_data


Copy File

Dari smartphone ke komputer

adb pull remote local

Dari computer ke smartphone

adb push local remote

Referensi