Advertisement
thief_g

Commands to install adb

Jun 5th, 2023
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. // Install the homebrew package manager
  3. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
  4.  
  5. // Install adb
  6. brew install android-platform-tools
  7.  
  8. // Start using adb
  9. adb devices
  10.  
  11. // Connect devices
  12. adb connect {IP:Port}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement