Home
Explore
Exams
Search for anything
Login
Get started
Home
Lesson 13 - Android Debug Bridge Commands
Lesson 13 - Android Debug Bridge Commands
0.0
(0)
Rate it
Studied by 0 people
0.0
(0)
Rate it
Call Kai
Learn
Practice Test
Spaced Repetition
Match
Flashcards
Knowt Play
Card Sorting
1/25
There's no tags or description
Looks like no tags are added yet.
Study Analytics
All Modes
Learn
Practice Test
Matching
Spaced Repetition
Name
Mastery
Learn
Test
Matching
Spaced
No study sessions yet.
26 Terms
View all (26)
Star these 26
1
New cards
Which tools do QA Engineers use to install builds and collect system logs on the iOS platform?
Xcode (used for installation and log collection), TestFlight (primarily for app installation)
2
New cards
adb devices
prints a list of serial numbers of all the devices that are connected
3
New cards
adb logcat
to view and follow the contents of the system's log buffers
4
New cards
adb install
helps to install an application that is under development to the device
5
New cards
adb bugreport
These commands will generate a zip file with full bugreport
6
New cards
adb push
Transfers a file from the local computer to the connected Andriod device. Ex uploading configurations, data files.
7
New cards
adb pull
retrieves a file from the device to the local computer, ex. log files, databases, or application data for detailed analysis on a PC
8
New cards
adb shell screenrecord
This command starts recording the screen of the connected device, saving the video to the device's storage.
9
New cards
adb shell am start
Launches an activity based on a deep link URI. This command is crucial for testing that deep links open the correct app screens.
10
New cards
adb devices -l
Lists connected devices and kind
11
New cards
adb root
restarts adbd with root permissions
12
New cards
adb start-server
starts the adb server
13
New cards
abd kill-server
Kills the adb server
14
New cards
adb remount
remounts the file system with read/write access
15
New cards
adb reboot
reboots the device
16
New cards
adb reboot bootloader
reboots the device into fastboot
17
New cards
adb disable-verity
Reboots the device into fastboot
18
New cards
adb logcat -g
Displays current log buffer sizes
19
New cards
adb logacat -G
sets the buffer size (K or M)
20
New cards
adb logcat -c
Clears the log buffers
21
New cards
adb logcat *:V
Enables ALL log messages (verbose)
22
New cards
adb logcat -f
Dumps to specified file
23
New cards
abd push
Copies the local to the device at remote
24
New cards
adb pull
Copies the remote from the device to local
25
New cards
Which adb command is used to install an app?
adb install
26
New cards
Which adb command is used to collect system logs?
adb logcat, adb bugreport