8000 GitHub - kamrullab/adb: ADB (Android Debug Bridge) is a versatile command-line tool that allows developers and power users to communicate with Android devices from a computer. It enables debugging, file transfer, app installation, shell access, and more.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ adb Public

ADB (Android Debug Bridge) is a versatile command-line tool that allows developers and power users to communicate with Android devices from a computer. It enables debugging, file transfer, app installation, shell access, and more.

Notifications You must be signed in to change notification settings

kamrullab/adb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

ADB (Android Debug Bridge)

ADB (Android Debug Bridge) is a versatile command-line tool that allows developers and power users to communicate with Android devices from a computer. It enables debugging, file transfer, app installation, shell access, and more.

📌 Features

  • Connect and control Android devices via USB or Wi-Fi
  • Install and uninstall applications
  • Access the device shell for debugging
  • Transfer files between a PC and an Android device
  • Capture screenshots and screen recordings
  • Reboot and recover device functions
  • Bypass bloatware and uninstall system apps

🚀 Installation

Download ADB

You can download ADB directly from the following link: Download ADB.zip

Windows

  1. Download the ADB Platform Tools from Google's official site.
  2. Extract the ZIP file into a folder (e.g., C:\adb).
  3. Open Command Prompt and navigate to the folder:
    cd C:\adb
  4. Test ADB installation by running:
    adb devices

Mac & Linux

  1. Open the terminal and install ADB using:
    brew install android-platform-tools  # For Mac (Using Homebrew)
    sudo apt install adb  # For Linux (Debian-based)
  2. Verify installation:
    adb version

🔧 Usage

Enable Developer Mode & USB Debugging

  1. Go to Settings > About Phone.
  2. Tap Build Number seven times to enable Developer Options.
  3. Go to Settings > Developer Options and enable USB Debugging.

Basic Commands

1️⃣ Check Connected Devices

adb devices

2️⃣ Access Device Shell

adb shell

3️⃣ Install APK

adb install app.apk

4️⃣ Uninstall App

adb uninstall com.example.app

5️⃣ Transfer Files

  • Send file to device:
    adb push file.txt /sdcard/
  • Retrieve file from device:
    adb pull /sdcard/file.txt .

6️⃣ Reboot Device

adb reboot

7️⃣ Disable or Remove System Apps (Caution ⚠️)

  • Disable:
    adb shell pm disable-user --user 0 com.android.example
  • Uninstall:
    adb shell pm uninstall --user 0 com.android.example

📜 License

This project is licensed under the MIT License.

🤝 Contribution

Feel free to open issues or submit pull requests if you have improvements or bug fixes.

🌟 Support

If you find this useful, don't forget to star ⭐ the repository!


Happy debugging! 🛠️

About

ADB (Android Debug Bridge) is a versatile command-line tool that allows developers and power users to communicate with Android devices from a computer. It enables debugging, file transfer, app installation, shell access, and more.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0