• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

charger connection sound

  • Thread starter Thread starter Android Question
  • Start date Start date
A

Android Question

Guest
how can i change my phone's charger connection sound.....phone model is: samsung galaxy s2 Gt-i9100
 
Hi, welcome to Android Forums.

There's only one way I've found to go about it, and that involves rooting your phone. I'm not sure of your carrier or the specific Samsung Galaxy S2 model, (there are many) and that makes a difference when rooting.

From there, here is what I found.

(Some instructions taken from MrTony and maerlim.)

You'll need the Android SDK (guide to download and install is here)
You'll need root accesss
You'll need the drivers for your device
You'll need Busybox (available on the market after you root the phone)

First, create the new file you would like to use as your sound. You need to have the file format be .ogg, because this file is going to replace the system file in your phone and it has to have the same name. (I used this free mp3/wma/ogg converter to convert a .wav file into .ogg.)

After you have created your .ogg file, rename it to Charger_Connection.ogg and place it in the <your Android SDK install directory>/tools folder.

Then, follow these instructions:

Connect USB to phone with USB Debugging ON (Menu -> Settings -> Applications -> Development -> USB debugging)
Open a Windows Command prompt in the Android SDK install directory
cd tools
adb push Charger_Connection.ogg /sdcard
adb shell
su
cp /system/media/audio/ui/Charger_Connection.ogg /sdcard/Charger_Connection.ogg.bak
cp /sdcard/Charger_Connection.ogg /system/media/audio/ui/Charger_Connection.ogg
exit
exit

You can also do this to change other system audio files, like low battery (TW_Low_Battery.ogg), camera click (camera_click_short.ogg), unlocking the phone (TW_Unlock.ogg), etc.
 
Back
Top Bottom