Is there a way to disable all USB functionality except for charging? I don't really use MTP or PTP and would like to disable it if possible.
3 Answers
The most device-compatible way to disable everything is to run this command at startup or set this in your build.prop:
setprop persist.sys.usb.config none
which is equivalent to charge-only on all Android devices.
That also disables adb. If you use adb regularly, then:
setprop persist.sys.usb.config adb
will allow adb when developer options are turned on/checked. If you don't use ADB often, I would not recommend it, because setting adb
causes my S5 to still recognize in device manager, even when it is locked.
To restore original functionality,
setprop persist.sys.usb.config mtp,ptp,adb
allows all USB protocols.
Hope this helps anyone Googling for an answer.

- 1,564
- 3
- 13
- 21
Go to Settings → Storage and tap on the overflow menu in the top right (on a device with a physical menu key, you may need to press that instead). This should bring up a menu item labeled "USB Computer Connection":
Tap on that, and it will give you a list with possible connection modes. Uncheck everything that you don't intend to use. On my N5/CM11 there are only two options on this page: MTP and PTP. Unchecking both causes the phone to simply charge when plugged into a PC. I have seen others that have an explicit "Charge Only" option, but I believe that is nonstandard.

- 36,787
- 16
- 144
- 175
-
Note also that PTP must be ticked for tethering to be offered, either via USB or Bluetooth. – andybjackson Jun 06 '14 at 12:46
-
@andybjackson That has not been my experience at all. I never use PTP, but I certainly use USB tethering from time to time. Also seems odd that tethering over Bluetooth (a wireless protocol) would somehow depend on PTP. – eldarerathis Jun 06 '14 at 14:33
-
If I untick both, ADB stops working as well (LG P880 running CM11/Android 4.4). If one of them is ticked, I always get two popups on my PC when connecting the cable (asking to mount the MTP storage). Drives me crazy. Whish there were an explicit "charge only" as it was with "older versions". – Izzy Nov 11 '15 at 23:37
-
@Izzy They actually ended up adding "charge only" to AOSP in 6.0, and made it the default: http://www.androidcentral.com/inside-marshmallow-usb-connection-options – eldarerathis Nov 12 '15 at 04:15
-
I'd be happy with that default actually (if it works, see: “adb devices” gives “no permission” when on charge-only) – but I agree the user should be able to chose what fits him/her best. – Izzy Nov 12 '15 at 09:07
-
Clicking that just say "Usb is now disconnected". Clicking it again says the same thing. – Cerin Oct 23 '16 at 13:17
-
On a Samsung Galaxy S5, this option is located at Settings → System → Developer options → Debugging → Networking → USB configuration. Change it from "MTP (Media Transfer Protocol)" to "Charging". – sffc Jan 06 '17 at 05:51
build.prop
without root. Those who have locked bootloaders & no recovery will need root permissions. – Aaron Gillion Mar 21 '16 at 00:19setprop persist.sys.usb.config adb
letsadb devices
show???????????? no permissions
. Played with all combinations – no way to get "charge only + adb". Must be "x,adb" (with x=mtp or ptp) to work at all. To restore, in terminal I needed root. The notification menu just grayed out when I tried re-enabling MTP from there. – Izzy May 18 '16 at 00:59