This is best done after you flash a ROM as you might lose some settings.
(I noticed my wall paper changed and i had to sign back into Google account)
---This framework-res.apk file is different for every ROM---
In order to lower button brightness levels You have to change values in framework-res.apk/res/values/arrays.xml and here is how (read whole post first )
These are stock HTC AMAZE values:
Click to expand...
Click to collapse
Code:
<integer-array name="config_autoBrightnessButtonBacklightValues">
<item>255</item>
<item>255</item>
<item>255</item>
<item>255</item>
<item>-1</item>
<item>0</item>
<item>0</item>
<item>0</item>
<item>0</item>
<item>0</item>
</integer-array>
These are values should reduce the problem significantly
Code:
<integer-array name="config_autoBrightnessButtonBacklightValues">
<item>190</item>
<item>190</item>
<item>190</item>
<item>190</item>
<item>-1</item>
<item>0</item>
<item>0</item>
<item>0</item>
<item>0</item>
<item>0</item>
</integer-array>
These brightness levels are corresponding to the amount of light that light sensor is getting - the lowest value is while in the low light the highest when for example your phone is in direct sunlight. Brightness values are defined by numbers 1 is the lowest possible setting and 255 is the maximum brightness that can be set.
As You can see I was pretty aggressive with lowering these values and yet the buttons are still bright in every situation. You can set them a little bit higher or lower in order to suit your preferences.
Here is a guide on how to perform this mod on any framework-res.apk using apk manager (thanks for the guide goes to desean):
1. Download APK manager and unpack somewhere
2. Grab framework-res.apk from your phone under \system\framework\ (e.g. adb pull) and place it in the "place-apk-here-for-modding" folder
3. Run Script.bat and select option 9
4. Once done, go to projects\framework-res.apk\res\values\arrays.xml and edit your values as per first post.
5. Once edited, compile the apk using option 11
6. Qn: Is this a system apk. Ans: y
7. Qn: Aside from the signatures, would .... least. Ans: y
8. Prompt: In the apk manager folder u'll find a keep folder..... done then press enter on this script. Press any key to continue . . . You have to go to "keep" folder and delete resources.arsc because arrays.xml have been changed. After this You can press any key in apk manager window.
9. Once done, input 22 in apk manager and select "unsignedframework-res.apk" by entering the number that stands for it. After selecting it You should see in apk main window in the top right corner "Current-App: unsignedframework-res.apk".
10. Now press 5 to zipalign apk. You will find your completed, zipaligned apk under place-apk-here-for-modding\unsignedframework-res.apk.
11.Rename it back to framework-res.apk and adb push the file back to your phone
Click to expand...
Click to collapse
To send it back to your phone
Prerequisites have...
The file you are pushing must be placed in the platform-tools folder of adb so if you are pushing file "framework-res.apk" this needs to be downloaded/copy and pasted in C:\android-sdk-windows\platform-tools
1: go to run and type cmd (or just open your command prompt)
2: cd C:\android-sdk-windows\platform-tools
3: adb remount
4: adb devices *if everything is set up right this should output a serial number*
5: adb push FFFFFFF.FFF /#####/###### *i hope my notes help here you need to put the file name in for the F(s) and in the pound signs you put the destination on the devices:
Code:
adb push framework-res.apk /system/framework
7. adb reboot this is how you finish
Click to expand...
Click to collapse
You have to copy the file to your phone with ADB or you will get a boot loop and have to re install your ROM.
Link for APK Manager HERE
If you have problems with apk manager showing java error (like it did) this post helped me fix that
Sources:
http://forum.xda-developers.com/showthread.php?t=1235212
http://forum.xda-developers.com/showthread.php?t=695701
http://forum.xda-developers.com/showthread.php?t=642437
APK Manager 4.9 download link (currently original thread link down for me)
http://www.zshare.net/download/99034654c32618ba/
you know there is a free app on the market that fixes this problem right?
Sent from my HTC_Amaze_4G using XDA App
jul644 said:
okay so you can all see when your watching a movie and your captive back light buttons are one and they bleed into the screen, i will post a quick tutorial how to fix this issue or any rom, but i need some one to exract their framework-res.apk from /system/framework directory
if some one can send me their i can make a quick tutorial
Click to expand...
Click to collapse
You've caught my interest. Here you go......
Cool...will gladly test when fixed. Also do you mind telling us what is changed in the framework-res.apk ?
Sent by accident from my Amaze using Tapatalk
why not create a script?
-FuRBz- said:
why not create a script?
Click to expand...
Click to collapse
Tried that. Will not work on a custom ROM because of init-d.
Double0EK said:
Cool...will gladly test when fixed. Also do you mind telling us what is changed in the framework-res.apk ?
Sent by accident from my Amaze using Tapatalk
Click to expand...
Click to collapse
updated the original post, i dont have my amaze any more but these values should be low enough to fix the bleed but still see them!
Post back on your experience guys and if different levels work better
also if some one can do a before and after shot that would be wicked
jul644 said:
updated the original post, i dont have my amaze any more but these values should be low enough to fix the bleed but still see them!
Post back on your experience guys and if different levels work better
also if some one can do a before and after shot that would be wicked
Click to expand...
Click to collapse
Very NICE!!! hope all devs can implement this in their future releases..
silvscorp said:
Very NICE!!! hope all devs can implement this in their future releases..
Click to expand...
Click to collapse
im surprised not many have, i know leedroid has this under tweeks.
this is also great as you can edit the auto brightness levels, by lowering them you hardly notice a difference but you wont destroy your battery.
You are a beast! Thank you!
Sent from my HTC_Amaze_4G using xda premium
I just have this script run on boot
#!/system/bin/sh
echo 0 > /sys/class/leds/button-backlight/brightness
chmod 444 /sys/class/leds/button-backlight/brightness
In my case it disables them completely but you can replace the 0 with a value that suits you best and that will be your maximum brightness and it's much less invasive of a change to your device
Sent from my HTC_Amaze_4G using xda premium
XmentalX said:
I just have this script run on boot
#!/system/bin/sh
echo 0 > /sys/class/leds/button-backlight/brightness
chmod 444 /sys/class/leds/button-backlight/brightness
In my case it disables them completely but you can replace the 0 with a value that suits you best and that will be your maximum brightness and it's much less invasive of a change to your device
Sent from my HTC_Amaze_4G using xda premium
Click to expand...
Click to collapse
thats very nice could i put that in the first thread? (do you just type that into cmd after a su command?
jul644 said:
thats very nice could i put that in the first thread? (do you just type that into cmd after a su command?
Click to expand...
Click to collapse
you would run it as an init.d script if your rom supports it, or there is scripter on the market which you can just create a new script and copy and paste it into it.
that or if your going to copy and paste it into a command prompt just remove the #!/system/bin/sh line.
keep in mind why I run this on boot is because it doesnt survive a reboot so it must be reapplied as such unless the rom you run has the number premodified before flashing (i assume, just a guess not a developer by any means)
I learned this trick way back with my EVO 4g and subsequent 3D I now ditched sprint and am on Tmo. I take no credit for it so share and share alike
XmentalX - I just created a g-script with that command and it works like a charm. thanks
Sent by accident from my Amaze using Tapatalk
i might be messing up in one of the steps but i get stuck at the htc logo
Double0EK said:
XmentalX - I just created a g-script with that command and it works like a charm. thanks
Sent by accident from my Amaze using Tapatalk
Click to expand...
Click to collapse
Glad I could help that drove me nuts when I first got mine which is why I opt just to disable them muscle memory takes care of pressing the right ones in the dark
Sent from my HTC_Amaze_4G using xda premium
-FuRBz- said:
i might be messing up in one of the steps but i get stuck at the htc logo
Click to expand...
Click to collapse
are you using adb to send the file back to your phone?
Is there any way to do it on a non rooted amaze?
Sent from my HTC_Amaze_4G using xda premium
jsalazarcervantes said:
Is there any way to do it on a non rooted amaze?
Sent from my HTC_Amaze_4G using xda premium
Click to expand...
Click to collapse
not to my knowledge you need an unlocked bootloader
jul644 said:
are you using adb to send the file back to your phone?
Click to expand...
Click to collapse
yea i am, it shows that everything goes through then after i do adb reboot the phone stays in the htc screen
might have to try this again when i get home.. i want those darn lights off all the time!! lol
Related
this is regarding this thread http://forum.xda-developers.com/showthread.php?t=1064558
can sumone please give me a very detailed instructions how to do this...its really confusing for me since im a newbie..i really want the multitouch feature on my phone...pleaseeeeeeeee..i dont get when the say "goto any shell.the so on so forth....i really dont know wat to nxt. can sumone be so kind to explain it step by step...please......
"Also edit your build.prop and add the lines below:
ro.product.multi_touch_enabled=true
ro.product.max_num_touch=2 "
^what does this mean????really cluless
I rooted my phone already...downloaded the driver the extracted it then im stuck...
thanks a bunch!!!
Bump...sumone please help!!!
More info, rom, baseband ??
still has the original Sony Ericcsson OS...never changer ...changes ive done was just by rooting it...thanks so much..my concern were just ignored by others
You need to do this:
http://forum.xda-developers.com/showpost.php?p=13497850&postcount=49
attached here
http://forum.xda-developers.com/showpost.php?p=13498312&postcount=53
Please thanks to teapea
D4rKn3sSyS said:
You need to do this:
http://forum.xda-developers.com/showpost.php?p=13497850&postcount=49
attached here
http://forum.xda-developers.com/showpost.php?p=13498312&postcount=53
Please thanks to teapea
Click to expand...
Click to collapse
I followed your advice, ive downloaded the file but it wont let me paste it to the given directory (/system/etc/permissions...).I dont get it...what should i do so it'll allow me...help... also, once it transferred,should it work immediately after that???
HELPPPP!!!! Thanks!!!
wilger_18 said:
I followed your advice, ive downloaded the file but it wont let me paste it to the given directory (/system/etc/permissions...).I dont get it...what should i do so it'll allow me...help... also, once it transferred,should it work immediately after that???
HELPPPP!!!! Thanks!!!
Click to expand...
Click to collapse
Have you mount rw?
In rootexplorer theres a button in the right corner. Press the button once n test again
Ro=read only
Rw=read,write
Sent from my U20i using Tapatalk
X10_minipro said:
Have you mount rw?
In rootexplorer theres a button in the right corner. Press the button once n test again
Ro=read only
Rw=read,write
Sent from my U20i using Tapatalk
Click to expand...
Click to collapse
ive transferred the file "android.hardware.touchscreen.multitouch.xml" to /syste/etc/permissions already...rebooted and still nothing...what am i missing....???HELP!!!
Instructions:
Copy .ko
Edit hw_config
Copy permissions
Enjoy ?
D4rKn3sSyS said:
Instructions:
Copy .ko
Edit hw_config
Copy permissions
Enjoy ?
Click to expand...
Click to collapse
Sorry if im berng stupid....i didnt understand everything u posted above....if you dont mind telling it step by step....coz i really dont speak ur language (technically, i meant)...pardon me from getting on ur nerves...and thanks for the patience...
i rooted my phone (still in original SE OS)...downloaded ES file/root explorer...copied the .xml file to the said directory....thats all what ive done...sorry...if im bering really slow...
bump!!! Bump!!!
well now do that.
1.copy cy8ctma300_ser.ko to system/lib/modules and set permisions
x-x
x
x
2.edit hw_cofing.sh in system/etc
add line: insmod /system/lib/modules/cy8ctma300_ser.ko
and save it.
3.edit build.prop in system/
add lines: ro.product.multi_touch_enabled=true
ro.product.max_num_touch=2
reboot phone and enjoy
1. copy cy8ctma300_ser.ko to /system/lib/modules/
2. go to hw_config.sh in the /system/etc/hw_config.sh
3. open it with a text editor
4. add this code in the beginning of the file:
"insmod /system/lib/modules/cy8ctma300_ser.ko"
"sleep 1"
5.save the changes u have made to hw_config.sh
6. also edit the build,prop in the system folder:
ro.product.multi_touch_enabled=true
ro.product.max_num_touch=2
7. reboot the phone and u r good to go.
can someone pls send me "hw_config.sh" for mini pro, i accidently deleted it
twingley said:
can someone pls send me "hw_config.sh" for mini pro, i accidently deleted it
Click to expand...
Click to collapse
You got it in rom zip and copy it to your phone
Sent from my U20i using XDA Premium App
samanvai said:
1. copy cy8ctma300_ser.ko to /system/lib/modules/
2. go to hw_config.sh in the /system/etc/hw_config.sh
3. open it with a text editor
4. add this code in the beginning of the file:
"insmod /system/lib/modules/cy8ctma300_ser.ko"
"sleep 1"
5.save the changes u have made to hw_config.sh
6. also edit the build,prop in the system folder:
ro.product.multi_touch_enabled=true
ro.product.max_num_touch=2
7. reboot the phone and u r good to go.
Click to expand...
Click to collapse
i did everything u said still nothing....my phone still has the original os just to let you know.... not sure where exactly i should type those lines....i mean beginning or end...plsss...help!!!
wouldn't it be easier for you to just flash a rom which already has a multitouch in itself? you already rooted your phone, there's not much you can do wrong, and you can always restore if you do your backups on time
edit: plus, custom roms are in many cases much better than stock
thanks....its already working...thank you for all the walkthroughs you have posted....!!!!!
http://forum.xda-developers.com/showthread.php?t=977912
Does anyone know if there is a working version for the Atrix? Id love to get this to work.
Thanks.
I'm no expert, and it's not my style, but I'll give it a try and report back in a few minutes.
EDIT: I got it partially working, I installed the apk in the zip, and moved the files in the system/lib directory of the zip file to /system/lib. after that you can use the wallpaper without a force close, but it doesn't fill the screen. I'll try one more thing and include a screenshot.
you'll need to pull the files from an htc device that is qhd. I think the sensation is qhd, but I'm not sure.
Sent from my MB860 using XDA App
downtrodn said:
http://forum.xda-developers.com/showthread.php?t=977912
Does anyone know if there is a working version for the Atrix? Id love to get this to work.
Thanks.
Click to expand...
Click to collapse
What part do u like about it?
I used Alien ROM + theme + Sensual GingerBread
Looks alot like it. check them out
I just want the live wallpaper since I'm a camera man, I love the bokeh
My gf has the evo 3D tried to don't the apk but only found android live wallpaper apk.
Sent from my MB860 using Tapatalk
i pulled the files from an HTC Sensation rom and sure enough it works fine, and is the right resolution for our screens. I can't make an update.zip though, i tried a few dozen times and only get errors.
uiskibum said:
i pulled the files from an HTC Sensation rom and sure enough it works fine, and is the right resolution for our screens. I can't make an update.zip though, i tried a few dozen times and only get errors.
Click to expand...
Click to collapse
Anyway to install as a apk? I appreciate the hard work
Sent from my MB860 using Tapatalk
nope it's not as simple as an apk install. I'll write up something tomorrow and include the files in a .zip.
Sent from my MB860 using XDA App
If you stuff your phone I take no, zero, none, nada, zip, zilch responsibility for it.
The following method is for adb, you could most likely use root explorer of file expert, but you need a file manager that lets you remount system as read/write. It assumes you know how to get the files to your phone/sd-card and have the android sdk, and know how to use it. I also assume that you know how to backup, have backed up and know how to restore (nandroid, rom manager, tibu, whatever).
1. Start a windows command prompt; if you can't do this, then stop right here.
2. type 'adb shell'
3. see code block below
Code:
su (accept prompt on phone if needed)
mount -o remount,rw /dev/mmcblk0p12 /system
cd [PATH TO FILES]
cp Mode10Wallpapers.apk /system/app
chmod 644 /system/app/Mode10Wallpapers.apk
cp libicule.so /system/lib
chmod 644 /system/lib/libicule.so
cp libiculx.so /system/lib
chmod 644 /system/lib/libiculx.so
cp libmode10_alpha.so /system/lib
chmod 644 /system/lib/libmode10_alpha.so
cp libmode10_wallpapers.so /system/lib
chmod 644 /system/lib/libmode10_wallpapers.so
cp libmode10Graphics_alpha.so /system/lib
chmod 644 /system/lib/libmode10Graphics_alpha.so
You should now see the HTC Sense LWP option in your live wallpaper selector. If not reboot and see if that does it. Setting the permissions is key.
You can do the same with root explorer/file expert by copying the files to the appropriate folder (apk to /system/app and the *.so to /system/lib) and changing permissions, you just have to remount /system as read/write for the files to actually copy over.
If you stuff your phone I take no, zero, none, nada, zip, zilch responsibility for it.
First time I tried this I did a bulk chmod on /system/lib and on the next reboot
I was stuck in recovery. So as painstaking as it is the one by one method of copying and permission setting is the safest (for me at least).
THIS IS NOT CWM FLASHABLE
Thanks for this!
Im lost! when I get to "cp Mode10Wallpapers.apk /system/app" dos tells
me that there is no such file, and doesn't do anything..
I have it on my C:\ just sitting there... no special file or folder.
Anyways, what does the "CP" stand for? just curious...
Thanks!!! Looking so forward to this
ssmr2t said:
Thanks for this!
Im lost! when I get to "cp Mode10Wallpapers.apk /system/app" dos tells
me that there is no such file, and doesn't do anything..
I have it on my C:\ just sitting there... no special file or folder.
Anyways, what does the "CP" stand for? just curious...
Thanks!!! Looking so forward to this
Click to expand...
Click to collapse
.......
are the files on your phone? I had mine in /sdcard/download/htclwp. so the line of "cd [LOCATION OF FILES]" for me is cd /sdcard/download/htclwp
all the commands listed are for once you have an adb shell session running.
I'll update my post to include that bit.
cp is a linux/unix command for copy.
Hey thanks a lot, it worked. I see the LWP in my wallpaper drawer, but it FC's on me... I also checked off all permissions.
Oh well...
Is there any way to port over the "weather" LWP from the new Evo 3d? ? NOW THATS A WALLPAPER that would be sick to see on our devices!!!
ssmr2t said:
Hey thanks a lot, it worked. I see the LWP in my wallpaper drawer, but it FC's on me... I also checked off all permissions.
Oh well...
Is there any way to port over the "weather" LWP from the new Evo 3d? ? NOW THATS A WALLPAPER that would be sick to see on our devices!!!
Click to expand...
Click to collapse
if it's force closing then you should recheck the permissions on all the files (and make sure they all copied over), and try a reboot. this does work.
uiskibum said:
if it's force closing then you should recheck the permissions on all the files (and make sure they all copied over), and try a reboot. this does work.
Click to expand...
Click to collapse
You are Awesome! It worked via root explorer. I want to thank you for your time, hard work, and being a Guinea pig. as a result of a semi brick, i think thats what that was?
If you want to do any more htc wallpapers i have all the stock ones from the HTC Evo 3D. Again..............
Thank you! you rock!
uiskibum said:
if it's force closing then you should recheck the permissions on all the files (and make sure they all copied over), and try a reboot. this does work.
Click to expand...
Click to collapse
What should the permissions be?
Sent from my MB860 using XDA Premium App
I didn't set any permissions. Just copied over the files to the correct folders mounted and rebooted.
Sent from my MB860 using Tapatalk
Permissions (if set by root explorer or other) should be:
HTML:
Read Write Execute
Owner X X
Group X
Others X
uiskibum said:
Permissions (if set by root explorer or other) should be:
HTML:
Read Write Execute
Owner X X
Group X
Others X
Click to expand...
Click to collapse
Thanks, is that for all the files?
Sent from my MB860 using XDA Premium App
ssmr2t said:
Hey thanks a lot, it worked. I see the LWP in my wallpaper drawer, but it FC's on me... I also checked off all permissions.
Oh well...
Is there any way to port over the "weather" LWP from the new Evo 3d? ? NOW THATS A WALLPAPER that would be sick to see on our devices!!!
Click to expand...
Click to collapse
God, that's one annoying signature you got there, lol.
msd24200 said:
Thanks, is that for all the files?
Sent from my MB860 using XDA Premium App
Click to expand...
Click to collapse
yes, for all the copied files.
Sent from my MB860 using XDA App
Code:
First of all, you like it or dont like it, feel free to ask for changes , but not for ETA.
Don´t post it elsewhere, without permission!
Code:
Your bootanimation is might be in /system/customize/resource
Download the bootanimation
Push it with ADB to /system/customize/resource or use file manager app to copy
# use filemanager for paste©
# set the right permissions (644 rw r r )
I am not responsible for anything, except my own phone
It is an edit of the stock animation, same framerate and resolution
Thanks for your effort!
Did anyone test it?
Did anyone test it?
Click to expand...
Click to collapse
Yes, I run it on my own device, if it doesnt work ... there will be set wrong permissions :angel:
Notechis said:
Yes, I run it on my own device, if it doesnt work ... there will be set wrong permissions :angel:
Click to expand...
Click to collapse
sorry if noob question but how to set permission? I really want to try this bootanimation.
Thank before
You can set the permissions using a file manager, I´ve tested venom explorer a few seconds ago, but I cannot find the option .
You can try solid explorer ...
Notechis said:
You can set the permissions using a file manager, I´ve tested venom explorer a few seconds ago, but I cannot find the option .
You can try solid explorer ...
Click to expand...
Click to collapse
Where do I paste the files?
Sent from my HTC One X+ using xda premium
Post 1 is updated with path
Notechis said:
Post 1 is updated with path
Click to expand...
Click to collapse
I paste it in the correct path and set permissions to 644 rw-r-r and its not working for me
Sent from my HTC One X+ using xda premium
On some ROMs (e.g. InsertCoin) you have to rename the two files to 'hTC_bootup_one.zip' and 'hTC_downanimation.zip'. These are the names of the animations in the stock ROM.
Correct
THX for the addition
Just for infos sake,,,,,,,,,
I had to rename mine to "ATT_bootanimation.zip" and "ATT_dow,,,,,,,,
That's what the originals were named.
Thanks for the hard work.
Optimus L9 APK Push Tool!!
First, all credit goes to kevev for putting this all together, and saving me from pulling my hair out
Instructions via kevev readme!
This script will automatically push apk files along with a shell script to your device
under /mnt/sdcard/external_sd/APKs. It will then run the shell script which will copy
the apk files to /system/app/ and change the file permissions to 644.
No warranty included!!
Use at your own risk!!
1.) Place all apk files in the "APKs" folder that you want installed in the /system/app/ folder on your rooted device.
2.) Connect device to your computer after installing the correct adb drivers.
3.) Enable "USB Debugging" on the device and wait for the driver to install.
4.) Run "PushAPKs.bat" and reboot your device when it finishes only if there are "NO" errors.
Click to expand...
Click to collapse
Now go thank kevev
CLICK
"I am not responsible if your phone does the following" ..
bricks - blows up - runs away to france
DOWNLOAD
CLICK
iB4STiD said:
1. if you own a 769BK click here to download 10e system apps backup
(if you own a p760 etc.. ask some nice person on this forum for that missing apk!)
2. next click here to download the optimusl9 zip and unzip this on your desktop!
3. take out your removable sdcard from your phone
4. place missing apk into the root of your removable sdcard and replace sdcard back into phone
5. get your usb cable and plug your phone into pc
6. on your computer open command prompt and type this
** type the following, one line at a time, followed by hitting the enter key! **
Code:
cd desktop
cd optimusl9
7. next adb time! fun huh?
** type the following, one line at a time, followed by hitting the enter key! **
Code:
adb shell
su
mount -o remount,rw /system
cat /sdcard/external_sd/LGHome3.apk > /system/app/LGHome3.apk
chmod 644 /system/app/LGHome3.apk
reboot
"I am not responsible if your phone does the following" ..
bricks - blows up - runs away to france - leaves you for another owner
:highfive:Donations are Welcome!!:highfive:
- DONATE
Click to expand...
Click to collapse
Good tutorial, though not required by me as yet. :good: Even easy for noobs. Liked the last warning too. :laugh:
cmahendra said:
Good tutorial, though not required by me as yet. :good: Even easy for noobs. Liked the last warning too. :laugh:
Click to expand...
Click to collapse
thanks .. lol
Great...it works with framework-res too
I changed dafault green smiles with smiles from SE Xperia...and everything works...when I tried it with file manager, everything was fine, but I can't set permissions, because I had always popup with errors And I had reinstall system...but this works super Thanks
Will this work on P765 too? Someone tried yet?
wlado93 said:
Great...it works with framework-res too
I changed dafault green smiles with smiles from SE Xperia...and everything works...when I tried it with file manager, everything was fine, but I can't set permissions, because I had always popup with errors And I had reinstall system...but this works super Thanks
Click to expand...
Click to collapse
Glad it helped!
cmahendra said:
Will this work on P765 too? Someone tried yet?
Click to expand...
Click to collapse
yup this will
working on an even easier way to do this
i have a questions..
how about deleting everything from system/app folder for example? what should i type?
i already deodex system/app and system/framework...so i want to replace all with deodex apk and remove the odex file..
hope that you can guide me..
bramprasetyo said:
i have a questions..
how about deleting everything from system/app folder for example? what should i type?
i already deodex system/app and system/framework...so i want to replace all and remove the odex file..
hope that you can guide me..
Click to expand...
Click to collapse
thats what im working on, make a batch file in a dir along with a folder that you can place all apks in, click the bat and it does the rest, i asked around just waiting, i have it working for my themes in the theme section, i just want an easy way not to have to type out all that code
for every apk an odex file. a couple of lines is one thing but being able to drag anything into a folder no mater what the name, would be easy for us all!!
iB4STiD said:
thats what im working on, make a batch file in a dir along with a folder that you can place all apks in, click the bat and it does the rest, i asked around just waiting, i have it working for my themes in the theme section, i just want an easy way not to have to type out all that code
for every apk an odex file. a couple of lines is one thing but being able to drag anything into a folder no mater what the name would be easy for us all!!
Click to expand...
Click to collapse
sorry for my english.. sometime it hard for me to understand.
you are working on a project that can make us easy to do that right?
so.. as for my question, do you mean that i should type for all that apk and odex? cant do with for example "*.apk" ?
bramprasetyo said:
sorry for my english.. sometime it hard for me to understand.
you are working on a project that can make us easy to do that right?
so.. as for my question, do you mean that i should type for all that apk and odex? cant do with for example "*.apk" ?
Click to expand...
Click to collapse
ya, hoping i can get help to figure it out, and yes for every .apk and odex file you would have to type it out, if your deodex a rom then it would be just .apks for the system, apks and jar files for the framework
iB4STiD said:
ya, hoping i can get help to figure it out, and yes for every .apk and odex file you would have to type it out, if your deodex a rom then it would be just .apks for the system, apks and jar files for the framework
Click to expand...
Click to collapse
ok than...
good luck with your project..
thanks
bramprasetyo said:
ok than...
good luck with your project..
thanks
Click to expand...
Click to collapse
no prob!
Update coming
working on a easier way to do this, almost done..
HOwdy!
I hope I didn't steal your thunder.
Here is an automated way to push APKs to /system/app/ .
https://www.dropbox.com/s/x264413ck099yv4/optimusl9 APK Push.zip
kevev said:
I hope I didn't steal your thunder.
Here is an automated way to push APKs to /system/app/ .
https://www.dropbox.com/s/x264413ck099yv4/optimusl9 APK Push.zip
Click to expand...
Click to collapse
lol, very nice... now heres my question what you did in the sh script could that be done in just a bat file?
iB4STiD said:
lol, very nice... now heres my question what you did in the sh script could that be done in just a bat file?
Click to expand...
Click to collapse
I guess everything could have been done from the batch script. It was just starting to look messy and I am more comfortable with shell.
To tell the truth, I am very rusty with batch scripting. I haven't messed with DOS in ages. Unix all the way!
kevev said:
I guess everything could have been done from the batch script. It was just starting to look messy and I am more comfortable with shell.
To tell the truth, I am very rusty with batch scripting. I haven't messed with DOS in ages. Unix all the way!
Click to expand...
Click to collapse
well, you did a great job... want me to post this is main op of this thread?
and btw talk about messy you should see what i was making lol
also b4 i forget if you do want me to post this is it ok its tied to your dropbox?, you could throw it up on dev host or if you want i could, up to you
iB4STiD said:
well, you did a great job... want me to post this is main op of this thread?
and btw talk about messy you should see what i was making lol
Click to expand...
Click to collapse
haha! If you could see some of my other scripts I think your eyes would cross and never go back to normal.
Sure, go ahead and post it. It is free code. No license necessary.
kevev said:
haha! If you could see some of my other scripts I think your eyes would cross and never go back to normal.
Sure, go ahead and post it. It is free code. No license necessary.
Click to expand...
Click to collapse
K, thanks again ! brb
Hello, as You probably know yet, our phones have very bright key backlight, and there's no way to decrease it. When i was reading something in night, these light was burning my eyes, so i found script which turn it off.
How to use?
When on CM10.1/Avatar/PAC:
Use f.e. Root Explorer and move attached file into \system\etc\init.d
Then change proporties of that file to rwxr-xr-x
Now reboot device, key backlight'll be off.
When on rooted stock, You must use Script Manager to activate script and run it on boot. Just follow instructions above, but before reebot, just select script in smanager and set it root permissions and run on boot.
You can don't have init.d folder, just make one yourself in \system\etc directory.
Not sure it's right section, if not please mod to move it somewhere else.
LINK TO SCRIPT: http://www30.zippyshare.com/v/99841400/file.html
Enjoy.
unn.
Unn113 said:
Hello, as You probably know yet, our phones have very bright key backlight, and there's no way to decrease it. When i was reading something in night, these light was burning my eyes, so i found script which turn it off.
How to use?
When on CM10.1/Avatar/PAC:
Use f.e. Root Explorer and move attached file into \system\etc\init.d
Then change proporties of that file to rwxr-xr-x
Now reboot device, key backlight'll be off.
When on rooted stock, You must use Script Manager to activate script and run it on boot. Just follow instructions above, but before reebot, just select script in smanager and set it root permissions and run on boot.
You can don't have init.d folder, just make one yourself in \system\etc directory.
Not sure it's right section, if not please mod to move it somewhere else.
LINK TO SCRIPT: http://www30.zippyshare.com/v/99841400/file.html
Enjoy.
unn.
Click to expand...
Click to collapse
Nice work. Thank You.
Another simple method!
Unn113 said:
Hello, as You probably know yet, our phones have very bright key backlight, and there's no way to decrease it. When i was reading something in night, these light was burning my eyes, so i found script which turn it off.
How to use?
When on CM10.1/Avatar/PAC:
Use f.e. Root Explorer and move attached file into \system\etc\init.d
Then change proporties of that file to rwxr-xr-x
Now reboot device, key backlight'll be off.
When on rooted stock, You must use Script Manager to activate script and run it on boot. Just follow instructions above, but before reebot, just select script in smanager and set it root permissions and run on boot.
You can don't have init.d folder, just make one yourself in \system\etc directory.
Not sure it's right section, if not please mod to move it somewhere else.
LINK TO SCRIPT: http://www30.zippyshare.com/v/99841400/file.html
Enjoy.
unn.
Click to expand...
Click to collapse
u can simply turn it off in display settings
In which ROM? I'm on PAC and can't see anything in settings.
unn.
ok then
Unn113 said:
In which ROM? I'm on PAC and can't see anything in settings.
unn.
Click to expand...
Click to collapse
then it is only in v20(x) roms
sorry! my bad!
use the script given above:laugh:
rr46000 said:
u can simply turn it off in display settings
Click to expand...
Click to collapse
Custom ROMs can't do that natively.
Hmmm
RL77LUC said:
Custom ROMs can't do that natively.
Click to expand...
Click to collapse
ok no problem (u can see my post above)
Helpful for ppl not on v20d good job
Sent from my LG-P769 using xda premium
Script works as it should on Pac ROM. Applied via smanager - it was easy :thumbup:
Wysyłane z mojego LG-P760 za pomocą Tapatalk 2
rr46000 said:
ok no problem (u can see my post above)
Click to expand...
Click to collapse
Well, my bad. I havn't read all messages .
Working on CM10.1!!!