Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.11 KB

HowToADB.md

File metadata and controls

41 lines (34 loc) · 2.11 KB

ADB Setup Guide

Device Setup

  • Go to Settings >> Developer Options and enable USB Debugging.
    • Enable Developer Options by going to Settings >> About, finding the Build Number item and tapping it 7 times.
  • Plug your device into your computer and accept the authorization request on it.
    • (Windows) You may need to install your device's drivers, available from the manufacturer's website.

Windows Setup

Linux (Debian-based) Setup

  • Make sure adb is installed:
    • sudo apt-get install adb

Linux (Fedora-based/openSUSE-based) Setup

  • Make sure android-tools is installed:
    • sudo yum install android-tools

Linux (Other) Setup

macOS Setup

Running the Commands

  • (NOTE) On Linux (Other) and macOS, use ./adb instead of adb.
  • In CMD/Terminal, run adb devices to make sure your device is seen.
  • Run these commands:
    • adb shell pm grant com.zacharee1.systemuituner android.permission.WRITE_SECURE_SETTINGS
    • adb shell pm grant com.zacharee1.systemuituner android.permission.DUMP
  • If neither of those commands has any output, then everything was successful and you can use the app.