This guide explains every step you used to:
✔ Install ADB on macOS
✔ Enable Wireless Debugging on Vivo
✔ Pair the phone with your Mac (no USB)
✔ Connect over Wi-Fi
✔ Access internal storage (/storage/emulated/...)
✔ Browse WhatsApp folder
Open Terminal:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"When installation completes, Homebrew is added to:
/opt/homebrew/bin
brew install android-platform-toolsThis installs:
adbfastboot- and related tools
Verify:
adb versionOn your phone:
- Open Settings → About phone
- Tap Software version (or Build number) 7 times
- Developer options become enabled
Go to:
Settings → System → Developer options → Wireless debugging → ON
Then tap:
➡ Pair device with pairing code
This shows:
- IP : Port (e.g.,
192.168.100.24:44671) - Pairing code (e.g.,
244604)
Keep this screen open — do not lock the phone.
On macOS Terminal:
adb pair 192.168.100.24:44671
Enter the pairing code seen on the phone:
Enter pairing code: 244604
Successfully paired
Now connect using ADB:
adb connect 192.168.100.24:40903
You should see:
connected to 192.168.100.24:40903
Check devices:
adb devices
Output example:
192.168.100.24:40903 device
adb-3417296818000FD-6nyAEF._adb-tls-connect._tcp device
This means:
✅ Your Vivo phone is fully connected ✅ ADB over Wi-Fi is running successfully
Start ADB shell:
adb -s 192.168.100.24:40903 shell
Now browse internal storage:
cd /storage/emulated/0
ls
To access WhatsApp folder on multi-user storage (Vivo uses /999):
cd /storage/emulated/999/Android/media/com.whatsapp/WhatsApp
ls
You will see folders like:
Backups
Databases
Media
At this point you can:
- copy (pull) files to Mac
- delete files
- modify files
- explore full storage
To copy WhatsApp “Media” to your Mac Downloads folder:
adb -s 192.168.100.24:40903 pull /storage/emulated/999/Android/media/com.whatsapp/WhatsApp/Media ~/Downloads/WhatsAppBackup
Inside ADB shell:
rm -rf /storage/emulated/999/Android/media/com.whatsapp/WhatsApp/Media/*
Vivo Funtouch OS has strict ADB rules:
- Wireless debugging must stay enabled
- Screen must stay unlocked
- Phone & Mac must be on same Wi-Fi network
- After reboot, you must pair again
You successfully connected your Vivo Y33s to macOS without USB, using these steps:
- Installed Homebrew
- Installed Android Platform Tools
- Enabled Wireless Debugging
- Paired with ADB pairing code
- Connected using ADB over Wi-Fi
- Accessed internal storage & WhatsApp files