how to add menus in setting apk?? I've modified my settings.apk and have trouble. I added e
DSPmanager (equalizer) in Sound setting menu but when I click it, nothing happen
ss
forum.xda-developers.com/attachment.php?attachmentid=1201490&stc=1&d=1342428484
Ss link deads
Provide working link
Sent from my GT-S5360 using xda premium
evanlocked said:
Ss link deads
Provide working link
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Sorry off topic...
Sir evan , ur app " Carrier Name " can it use to another phone ?
Sent from my GT-S5360 using xda premium
iki bro
Rikxzdjz said:
Sorry off topic...
Sir evan , ur app " Carrier Name " can it use to another phone ?
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Not sure but u can try it
working fine on gy and g-w
Sent from my GT-S5360 using xda premium
nothinkinc said:
iki bro
Click to expand...
Click to collapse
Decompile ur equalizer first and see the path off the main command i mean some xml
Like example com/bel/dspmanager/main
Soo u must write the command
Com.bel.dspmanager.main
In ur decompiled settings.apk
Sent from my GT-S5360 using xda premium
See my sign op
Sent from my GT-S5360 using XDA
evanlocked said:
Not sure but u can try it
working fine on gy and g-w
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Galaxy Wonder?? Or wave ?
Sent from my GT-S5360 using xda premium
Rikxzdjz said:
Galaxy Wonder?? Or wave ?
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Wonder bro
Sent from my GT-S5360 using xda premium
See this ss it closselly look like this
Sent from my GT-S5360 using xda premium
evanlocked said:
Wonder bro
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Thanks for info
Sent from my GT-S5360 using xda premium
evanlocked said:
Decompile ur equalizer first and see the path off the main command i mean some xml
Like example com/bel/dspmanager/main
Soo u must write the command
Com.bel.dspmanager.main
In ur decompiled settings.apk
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
evanlocked said:
Not sure but u can try it
working fine on gy and g-w
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
evanlocked said:
See this ss it closselly look like this
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
bingung bro.. itu taruh dmn ya???
I followed this thread forum.xda-developers.com/showthread.php?t=1736909
I've succeded edit setting.xml, but not succes in sound_setting.xml
maybe it's has different way
nothinkinc said:
bingung bro.. itu taruh dmn ya???
I followed this thread forum.xda-developers.com/showthread.php?t=1736909
I've succeded edit setting.xml, but not succes in sound_setting.xml
maybe it's has different way
Click to expand...
Click to collapse
Maybei will experiment that way soo stay tune fir my report
Sent from my GT-S5360 using xda premium
hell_lock said:
See my sign op
Sent from my GT-S5360 using XDA
Click to expand...
Click to collapse
I follow your thread bro... I've succeded edit setting.xml.. and i want to put dspmanager in sound menu, so I edit sound_setting.xml but nothing
nothinkinc said:
I follow your thread bro... I've succeded edit setting.xml.. and i want to put dspmanager in sound menu, so I edit sound_setting.xml but nothing
Click to expand...
Click to collapse
U must edit strings.xml to i thought
Sent from my GT-S5360 using xda premium
Can you giv me ur settings.apk or the files you hav modded?? I think you set the wrong target class of the apk that causes that prob
evanlocked said:
U must edit strings.xml to i thought
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
I'll try it tomorrow..
evanlocked said:
U must edit strings.xml to i thought
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
hell_lock said:
Can you giv me ur settings.apk or the files you hav modded?? I think you set the wrong target class of the apk that causes that prob
Click to expand...
Click to collapse
the target class is same with app that I've added to setting.xml.. I do this just for test and make sure that I'm not set wrong target
nothinkinc said:
the target class is same with app that I've added to setting.xml.. I do this just for test and make sure that I'm not set wrong target
Click to expand...
Click to collapse
can you post the code for that app in settings.xml? It will clear things..
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:title="@string/sound_settings" android:key="sound_settings"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<PreferenceCategory android:title="@string/sound_category_sound_title" />
<CheckBoxPreference androidersistent="false" android:title="@string/silent_mode_title" android:key="silent" android:summary="@string/silent_mode_summary" android:disableDependentsState="true" />
<ListPreference android:entries="@array/vibrate_entries" android:title="@string/vibrate_title" android:key="vibrate" android:summary="@string/vibrate_summary" android:entryValues="@array/vibrate_values" />
<com.android.settings.RingerVolumePreference androidersistent="false" android:title="@string/all_volume_title" android:key="ring_volume" android:summary="@string/ring_volume_summary" android:dependency="silent" android:dialogTitle="@string/all_volume_title" android:streamType="ring" />
<PreferenceScreen android:title="Equalizer">
<intent android:targetPackage="com.bel.android.dspmanager" android:action="android.intent.action.MAIN" android:targetClass="com.bel.android.dspmanager.activity.DSPManager" />
</PreferenceScreen>
<PreferenceCategory android:title="@string/sound_category_calls_title" />
<com.android.settings.DefaultRingtonePreference androidersistent="false" android:title="@string/ringtone_title" android:key="ringtone" android:summary="@string/ringtone_summary" android:dependency="silent" android:dialogTitle="@string/ringtone_title" android:ringtoneType="ringtone" />
<PreferenceCategory android:title="@string/sound_category_notification_title" />
<com.android.settings.DefaultRingtonePreference androidersistent="false" android:title="@string/notification_sound_title" android:key="notification_sound" android:summary="@string/notification_sound_summary" android:dependency="silent" android:dialogTitle="@string/notification_sound_dialog_title" android:ringtoneType="notification" />
<CheckBoxPreference androidersistent="false" android:title="@string/notification_pulse_title" android:key="notification_pulse" android:summary="@string/notification_pulse_summary" />
<PreferenceCategory android:title="@string/sound_category_feedback_title" />
<CheckBoxPreference android:title="@string/dtmf_tone_enable_title" android:key="dtmf_tone" android:defaultValue="true" android:summaryOn="@string/dtmf_tone_enable_summary_on" android:summaryOff="@string/dtmf_tone_enable_summary_off" />
<CheckBoxPreference android:title="@string/sound_effects_enable_title" android:key="sound_effects" android:defaultValue="true" android:summaryOn="@string/sound_effects_enable_summary_on" android:summaryOff="@string/sound_effects_enable_summary_off" />
<CheckBoxPreference android:title="@string/lock_sounds_enable_title" android:key="lock_sounds" android:defaultValue="true" android:summaryOn="@string/lock_sounds_enable_summary_on" android:summaryOff="@string/lock_sounds_enable_summary_off" />
<CheckBoxPreference android:title="@string/haptic_feedback_enable_title" android:key="haptic_feedback" android:defaultValue="true" android:summaryOn="@string/haptic_feedback_enable_summary_on" android:summaryOff="@string/haptic_feedback_enable_summary_off" />
<ListPreference android:entries="@array/emergency_tone_entries" android:title="@string/emergency_tone_title" android:key="emergency_tone" android:summary="@string/emergency_tone_summary" android:entryValues="@array/emergency_tone_values" />
</PreferenceScreen>
Related
Can someone upload the stock android.policy.jar and framework.jar here?
Please..
Thanks so much for the help..
http://forum.xda-developers.com/showthread.php?t=1141898
XperienceD said:
http://forum.xda-developers.com/showthread.php?t=1141898
Click to expand...
Click to collapse
The file is too big..
I only need the android.policy.jar and framework.jar ..
Well..thanks anyway.
Sent from my LT15i using xda premium
chitose_ndy said:
The file is too big
Click to expand...
Click to collapse
It's only 11mb.
XperienceD said:
It's only 11mb.
Click to expand...
Click to collapse
Well, downloading from Indonesia with phone , that size is too big, downloading rate only about 10 - 15 kbps .. so sad
Sent from my LT15i using xda premium
Here......
XperienceD said:
Here......
Click to expand...
Click to collapse
Thankyou thankyou thankyou
Sent from my LT15i using xda premium
No problem.
If I edit certain things in build.prop will the text I insert show up in my settings or send my phone into crazy mode lol
Sent from my SPH-D710 using xda premium
Depends what u want to edit.
Edit mod version or product model that will show up under settings edit other stuff will must likely break things
Sent from my SPH-D710 using xda premium
Yeah, like TCP said...don't edit stuff if you don't know what it is.....and after you edit, make sure you power off then back on if you want it to stick. A hot reboot won't cut it.
Thanx... How bout build.version.release??
Sent from my SPH-D710 using xda premium
roqstarmatt said:
Thanx... How bout build.version.release??
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
Should be fine.
roqstarmatt said:
Thanx... How bout build.version.release??
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
just curious, why would you want to edit display only info?
http://www.megashare.com/4059218
The official iPhone killer
Screenshots? And shouldnt this have gone in themes and apps?
Sent from my SPH-D710 using XDA
It's a Kamehameha wave going up against a Final Flash. It's pretty cool.
Sent from my SPH-D710 using Xparent ICS Tapatalk 2
elliwigy said:
Screenshots? And shouldnt this have gone in themes and apps?
Sent from my SPH-D710 using XDA
Click to expand...
Click to collapse
Here you go
The official iPhone killer
Wasn't this on the play store!:sly:
Sent from my SPH-D710 using xda premium
It was on the play store but it didn't stay long. It was removed for unknown reason. I manage to find a apk online.
The official iPhone killer
Is this not warez
I know it was a paid app
I wanted to get it but it wasn't worth the dollar
My current live wall paper on the other hand was
Its called galaxy pack
Also another reason I didn't get it was because he got the colors wrong
Goku used kaioken Kamehameha so it should be red and vegetas attacks have always been blue or purple also I'm pretty sure goku was on the ground
I hate inconsistinces
Sent from my SPH-D710 using xda premium
gtuansdiamm said:
Is this not warez
I know it was a paid app
I wanted to get it but it wasn't worth the dollar
My current live wall paper on the other hand was
Its called galaxy pack
Also another reason I didn't get it was because he got the colors wrong
Goku used kaioken Kamehameha so it should be red and vegetas attacks have always been blue or purple also I'm pretty sure goku was on the ground
I hate inconsistinces
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
Damn a true fan :thumbup:
Sent from my SPH-D710 using xda premium
newalker91 said:
False. Goku's Kamehameha while super saiyan was always blue, and Vegeta's Final Flash was yellow.
Click to expand...
Click to collapse
He is right wen in super sayain 1, 2, & 3 it was always blue!! Only in kaioken it was red!
Sent from my SPH-D710 using xda premium
There's a difference between a kamehameha and a kaioken kamehameha....
Sent from my SPH-D710 using xda premium
radrian92 said:
There's a difference between a kamehameha and a kaioken kamehameha....
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
Kaioken is red! And the regular Kamehameha is blue :banghead:
Sent from my SPH-D710 using xda premium
Negative when he was ss4 10x Kamehameha was red
Sent from my SPH-D710 using XDA
elprincipejay said:
Negative when he was ss4 10x Kamehameha was red
Sent from my SPH-D710 using XDA
Click to expand...
Click to collapse
Here ya go so you all can refresh ya memories! And I thought I had bad memory lmfao
https://play.google.com/store/apps/details?id=com.d3fc0n.android.dbplayerusv2
Pretty sure everyone will enjoy this! :beer:
Now let's leave this tread were it is!! Lol seriously lol
EDIT: and here is more visual proof so that no one is not misinformed
http://www.youtube.com/watch?v=9zhk1eACrfE&feature=youtube_gdata_player
Sent from my SPH-D710 using xda premium
krazy_smokezalot said:
Here ya go so you all can refresh ya memories! And I thought I had bad memory lmfao
https://play.google.com/store/apps/details?id=com.d3fc0n.android.dbplayerusv2
Pretty sure everyone will enjoy this! :beer:
Now let's leave this tread were it is!! Lol seriously lol
EDIT: and here is more visual proof so that no one is not misinformed
http://www.youtube.com/watch?v=9zhk1eACrfE&feature=youtube_gdata_player
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
Gee thanks now I'm probably gonna be up all night reliving my childhood
Sent from my SPH-D710 using XDA
newalker91 said:
False. Goku's Kamehameha while super saiyan was always blue, and Vegeta's Final Flash was yellow.
Click to expand...
Click to collapse
I nvr said gokus were always red
And I also it was kaioken Kamehameha so it was red
And well I watched dbz a long time ago you can't expect me to remember vegeta
He was always a minor character except for the saiyan and freeza arcs
Sent from my SPH-D710 using xda premium
gtuansdiamm said:
I nvr said gokus were always red
And I also it was kaioken Kamehameha so it was red
And well I watched dbz a long time ago you can't expect me to remember vegeta
He was always a minor character except for the saiyan and freeza arcs
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
HEY!! Vegeta is da sh!t OK. Don't forget it lol:beer:
Sent from my SPH-D710 using xda premium
Originally Posted by krazy_smokezalot<br />
Here ya go so you all can refresh ya memories! And I thought I had bad memory lmfao<br />
<br />
https://play.google.com/store/apps/details?id=com.d3fc0n.android.dbplayerusv2<br />
<br />
Pretty sure everyone will enjoy this! :beer:<br />
Now let's leave this tread were it is!! Lol seriously lol<br />
<br />
EDIT: and here is more visual proof so that no one is not misinformed<br />
<br />
http://www.youtube.com/watch?v=9zhk1eACrfE&feature=youtube_gdata_player<br />
<br />
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
<br />
<br />
Gee thanks now I'm probably gonna be up all night reliving my childhood <br />
<br />
Sent from my SPH-D710 using XDA
Click to expand...
Click to collapse
No problem. Sucks that the movie don't work tho! That would have been awesome
Sent from my SPH-D710 using xda premium
krazy_smokezalot said:
No problem. Sucks that the movie don't work tho! That would have been awesome
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
I swear I don't remember Goku being such a perv feeling up on everyone.. I almost cried when he told Bulma her boys where missing!! Japanese ppl are so perverted lol
Sent from my SPH-D710 using XDA
RayTrue04 said:
I swear I don't remember Goku being such a perv feeling up on everyone.. I almost cried when he told Bulma her boys where missing!! Japanese ppl are so perverted lol
Sent from my SPH-D710 using XDA
Click to expand...
Click to collapse
Those are the uncut version I forgot what episode but, on one of them it shows goku ass! Not that I wanted to see it just shocked me wen I saw it! I was like wtf they never showed that on TV! Well thats because its TV lol
Sent from my SPH-D710 using xda premium
I add it in the CM9 rom .. as? Thanks
flow214 said:
I add it in the CM9 rom .. as? Thanks
Click to expand...
Click to collapse
????
OMG xD
I posted a link in the themes and apps section that you can use
Sent from my SGH-T989 using xda premium
hiz99 said:
I posted a link in the themes and apps section that you can use
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Ok Thanks Bro Very Thanks
flow214 said:
Ok Thanks Bro Very Thanks
Click to expand...
Click to collapse
Tell me if you can't find it
Sent from my SGH-T989 using xda premium
Hey guys so I wanna know how to port roms. So i can post some of my ported rom with permission .Can anyone help?
Maybe this helps .. i use it to
http://forum.xda-developers.com/showthread.php?t=1859376
Help!!
Can u help me I'm stuck at this step:
delete these lines for ACE's build.prop and add these into them from your gio build.prop
example:
Code:
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=GT-S5830-user 2.3.3 GINGERBREAD DQKK6 release-keys
ro.build.fingerprint=samsung/GT-S5830/GT-S5830:2.3.3/GINGERBREAD/DQKK6:user/release-keys
TO:
Code:
# Do not try to parse ro.build.description or .fingerprint
ro.build.description=GT-S5660-user 2.3.4 GINGERBREAD DXKP6 release-keys
ro.build.fingerprint=samsung/GT-S5660/GT-S5660:2.3.4/GINGERBREAD/DXKP6:user/release-keys
- use CTRL+F to search, and search for GT-S5830. change any GT-S5830 in any line to GT-S5660.
after you changed them all search ''cooper'' and change those to ''gio''
I dont know how do u to this step. please help...
If you can upload the build.prop I can modify it
Sent from my GT-S5660 using xda app-developers app
voetbalremco said:
If you can upload the build.prop I can modify it
Sent from my GT-S5660 using xda app-developers app
Click to expand...
Click to collapse
u mean the ace one?
edit: http://www.mediafire.com/?b3y4cl18dqs9iy2 (link to download the ace build.prop)
batman38102 said:
u mean the ace one?
Click to expand...
Click to collapse
Yes.
Btw no need to post it double at development thread, I made the guide
Sent from my GT-S5660 using xda app-developers app
voetbalremco said:
Yes.
Btw no need to post it double at development thread, I made the guide
Sent from my GT-S5660 using xda app-developers app
Click to expand...
Click to collapse
Lol yea tht was my fault was getting paranoid so i double posted by accident
Voetbalraco
Sent from my GT-S5660 using xda premium
Sorry but any luck on modifiying the build.prop
Sent from my GT-S5660 using xda premium
Here it is, but its not done yet.
You need to edit fingerprint and
ro.build.description
ro.build.fingerprint
Take them from build.prop from your BASE rom.
http://www.4shared.com/file/FObiSzo4/build.html
http://www.4shared.com/file/FObiSzo4/build.html
Sent from my GT-S5660 using xda app-developers app
voetbalremco said:
Here it is, but its not done yet.
You need to edit fingerprint and
ro.build.description
ro.build.fingerprint
Take them from build.prop from your BASE rom.
http://www.4shared.com/file/FObiSzo4/build.html
http://www.4shared.com/file/FObiSzo4/build.html
Sent from my GT-S5660 using xda app-developers app
Click to expand...
Click to collapse
Sorry man but again I didnt understand "You need to edit fingerprint and
ro.build.description
ro.build.fingerprint
Take them from build.prop from your BASE rom. " Im using CM9 RC1 by MaclawStudios as the Base rom
Sent from my GT-S5660 using xda premium
Upload your BASE build.prop, the one from (problably) cm7 for gio
Sent from my GT-S5660 using xda app-developers app
U mean i should upload a build.prop which is from cm7. Cuz i have Phiexz CM7(Like i didnt install it but i have a download zip of it) so should i give upload it?
Sent from my GT-S5660 using xda premium
Yes, just like the other one..
I""ll modify it and reupload
Sent from my GT-S5660 using xda app-developers app
Will upload do it when i get time. U will not expect the upload right now maybe tommorow. Cuz im not in computer right now
Sent from my GT-S5660 using xda premium
Me neither, I modified it on my phone..
Sent from my GT-S5660 using xda app-developers app
Voetbalremco may I ask another favor from you? I know u might be busy but When I finish porting a ROM XperiaJellyBean ace rom there might be bugs will u help me to fix them? Dont worry i have taken permission
Sent from my GT-S5660 using xda premium
Sure. Btw we do better use PM for that
Sent from my GT-S5660 using xda app-developers app
voetbalremco said:
Sure. Btw we do better use PM for that
Sent from my GT-S5660 using xda app-developers app
Click to expand...
Click to collapse
Lol sorry about tht will keep in mind to use PM. BTW im gonna upload the build.prop
link to build.prop: http://www.mediafire.com/?dnn2gkbetitndar