Skip to content

Instantly share code, notes, and snippets.

View alvinlamweewah's full-sized avatar

Alvin Lam Wee Wah alvinlamweewah

View GitHub Profile
@alvinlamweewah
alvinlamweewah / AdbCommands
Created August 11, 2024 06:36 — forked from Pulimet/AdbCommands
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
@alvinlamweewah
alvinlamweewah / a-quick-guide-to-learn-adb.md
Created August 11, 2024 06:36 — forked from vheidari/a-quick-guide-to-learn-adb.md
If you need to learn how to use ADB this quick guide help you to learn how you can use it.

A quick tour inside your Android smatrphone with ADB

In this quick guide, we will learn what ADB (Android Debug Bridge) is and explore its options through a simple example. it should provid enough to understanding of how it works ;)

If you aren't familiar with it, this tool allows us to explore the inner workings of our Android smartphone, like a hacker (not literally, of course), without requiring root access. it enable various task such as installing and debugging applications, transferring files, and executing shell commands on the device.

How to install and use it ?

To install ADB tools, we have two approaches that you can choose from and follow through.

Install ADB through APT/Manually