Masi
Masi

Reputation: 161

How to stop the phone from charging via USB programmatically

I've tried to do as much research as possible but can't find an answer to this fairly simple question (want to figure this out before I'm going to set up the SDK and everything).I'm thinking about developing my first app and am wondering whether the BATTERY_STATUS_CHARGING from the BatteryManager contains only a get function or also a set function.

I wan't to make an app in which I can manually stop the phone from charging without unplugging it from the charger (via USB) and so am wondering whether this is actually possible.

Upvotes: 16

Views: 37124

Answers (6)

Sahelanthropus
Sahelanthropus

Reputation: 164

Use the below command to stop charging on Android 11. device need to be rooted.

I'm using Termux but Linux Deploy can be also be used.

sudo nano /sys/class/power_supply/battery/charger.0/stop_charge

Change value to 1 to stop and 0 to start again

Upvotes: 0

tejaswini teju
tejaswini teju

Reputation: 1212

Use the below command to stop the charging of mobile/handheld when connected to USB:

adb shell dumpsys battery set ac 0; dumpsys battery set usb 0;

Upvotes: 0

user1100264
user1100264

Reputation:

You can hardwire it: 12 ohms in serial still makes the phone be recognized by the computer, yet slowly discharge. See attached Picture.microUSB cable plugged into PCB. PCB shows VCC connected to wire via 12Ω resistor, and D-, D+ and GND connected directly to wires. All wires go to cable out of image

Upvotes: 7

Zakir
Zakir

Reputation: 2382

I know this thread is old but posting my ans anyways for someone reaching here later.. Try this:-
echo 0 > /sys/class/power_supply/batterycharging_enabled/charging_enabled

Upvotes: 7

3c71
3c71

Reputation: 4511

This is unfortunately not possible. Android only have read APIs for battery data. ADB_ENABLED will not help in this instance either as it's only to enable debugging over USB.

Battery charging control is internal to the Android kernel and battery IC modules. Manufacturers do change it from time to time, but it's not available to apps without root and without controlling the IC (integrated chip) modules through some tricky interface which would actually be different for almost every device out there!

At best if we're lucky, a sysfs interface might help do that, but again it requires root and may differ from device to device.

Upvotes: 3

Ajay S
Ajay S

Reputation: 48602

No, Its not possible on unrooted devices. It uses Settings.System with ADB_ENABLED, but ADB_ENABLED is a Secure-System-Setting which can not be changed by a application.

Yes, It can be done on rooted phone.

There is need to add an permission android.permission.WRITE_SECURE_SETTINGS.

Same type of application on Google Play : https://play.google.com/store/apps/details?id=com.jim2&hl=en

Upvotes: 10

Related Questions