This just enables weird settings on your phone. It doesn't pose any risks as long as you don't run amok in the Developer options
menu. And it can be disabled again at the end of the process if you like.
- Go to
Settings>About. - Find
Build numberat the bottom. - Tap it 7 times, and you should see a popup message telling you are a developer.
Similar to the above, this just adds the possibility of debugging over a USB cable. It does nothing risky by itself.
- Go to
Settings>System>Developer options - Scroll down to
Debuggingsection and enableUSB debugging.
- Plug the phone into a Windows PC.
- If the phone doesn't say "USB Debugging Connected" in a notification, you may need to install a driver in Windows:
- Download the Google USB Driver here (or if your phone is not Google, you might need a different one)
- Unzip the driver to a temporary location.
- Open the Windows
Device Manager. - Find the unrecognized android phone indicated by a yellow exclamation mark
- Right-click,
Update Driver,Browse my computer for drivers Browse...to the location you unzipped the driver. ClickOkayfor the next few steps until the driver is installed.
- When this is done the phone should say "USB Debugging Connected" in a notification.
- Download the platform tools here, by clicking the "Windows" link: https://developer.android.com/studio/releases/platform-tools
- Unzip the download in an appropriate folder for android hacking tools.
- Open a Command Prompt,
cdto that location, run this command:adb devices - Look at the phone. It should be asking you if you want to allow the computer to connect. Permit it.
- If you have succeeded,
adb devicesshould list an attached device.
- Enter:
adb shell - You should see a unix prompt ending in
$. You are now typing commands directly into the phone's underlying linux operating system. - Enter:
appops set com.skype.raider VIBRATE ignore - When you are done, enter:
exit