I wanna remove the font I installed - Android Q&A, Help & Troubleshooting

Ok, so I installed a font using
root tools, and now I wanna undo it so I can install the new roboto font from ICS. I flashed the roboto zip thinking that it would write over the root tools font install, but it didn't. Does anyone know how to undo the font from root tools?
Sent from my SGH-I997 using XDA App

Anybody?
Sent from my SGH-I997 using XDA App

Try to use font installer app from market. Two click font changed. It is fine
Accidentally sent from my Google Nexus S using XDA Premium

If you have adb installed, you can use adb to install the fonts:
1. Unzip the font zip file, you should find 3 ttf files in system/fonts directory.
2. adb remount
3: adb push Clockopia.ttf /system/fonts/Clockopia.ttf
4: adb push DroidSans.ttf /system/fonts/DroidSans.ttf
5: adb push DroidSans-Bold.ttf /system/fonts/DroidSans-Bold.ttf
6: adb reboot
If you want to backup your existing font files, do a pull before the push.
Hope it helps.
ICS Stuff (Fonts/Wallpapers/Ringtones/ClockWidget/Apps):
http://forum.xda-developers.com/showthread.php?t=1309690

tingtan said:
If you have adb installed, you can use adb to install the fonts:
1. Unzip the font zip file, you should find 3 ttf files in system/fonts directory.
2. adb remount
3: adb push Clockopia.ttf /system/fonts/Clockopia.ttf
4: adb push DroidSans.ttf /system/fonts/DroidSans.ttf
5: adb push DroidSans-Bold.ttf /system/fonts/DroidSans-Bold.ttf
6: adb reboot
If you want to backup your existing font files, do a pull before the push.
Hope it helps.
ICS Stuff (Fonts/Wallpapers/Ringtones/ClockWidget/Apps):
http://forum.xda-developers.com/showthread.php?t=1309690
Click to expand...
Click to collapse
Thanks, I tried that, but it didn't work. And font installer is made by the same guy that makes root tools, and I believe that both of those programs change that default font directory somehow, because overwriting the font files did nothing. I ended up just re flashing my rom, and that did the trick.
Sent from my infused infusion infuse using XDA App

Please am having problem with me android phones. I can't apply fonts on my Infinix hot 5. All available fonts are showing applied already. If anyone can help

Related

[Q] Installing Stock apps

I m using OptimusXromv1.1 posted in the forum..However i m not able to install stock apps like Fmradio,Native Android Browser on my P500..tried Every thing COpying files (with root of course) to /system/app and changing permissions to rw,r,r similar to other files however on reboot there is no FMRadio in my app drawer HElp..Tried both Root Explorer and Adb ..Partition was always mounted rw..HElp ?? I dont want to give up on this ROm it Rocks!!
http://forum.xda-developers.com/showpost.php?p=10746505&postcount=31
Try that.
Didn't i just say that i tried all that already..ISnt anybody else having this problem with this rom
Go to recovery, mount system and then push them via adb. They should work.
Sent from my LG-P500 using XDA App
u cud plz post that adb push command with all its parameters(if needed - something) .one more thing i have both the apk and the odex from original STock Firmware do i need to push these both or just apk is fine??
Isn't the ROM deodexed ? You should get the apps deodexed before pushing them.
You could give a try and push them both, but I think you'll be ending with a FC.
When you are in recovery mode:
1. Go to Mounts and then click on mount system.
2. With ADB while in recovery mode type:
adb push file.apk /system/app/file.apk (replace file.apk with your app, ex: browser.apk)
Didnt work! All it does it to copy the file there's a difference in date of creation of file mayb thats the reason
Sent from my LG-P500 using XDA App
I did so with devoid. I took the apps from delta package and I've pushed them through recovery.

Adb help please

Trying to pull all of my system/app directory to my pc what's the proper command to.get all at once.
Sent from my PG86100 using Tapatalk
Code:
adb pull /system/app/
That will pull all of the apk files from /system/app and place them in your current directory. If you want to direct them somewhere else, here's an example:
Code:
#Windows
adb pull /system/app/ c:\android\apps\
#Linux & Mac
adb pull /system/app ~/Downloads/apps/
Thank u I'm on tapatalk or I would hit the button.
Sent from my PG86100 using Tapatalk
MongooseHelix said:
Code:
adb pull /system/app/
That will pull all of the apk files from /system/app and place them in your current directory. If you want to direct them somewhere else, here's an example:
Code:
#Windows
adb pull /system/app/ c:\android\apps\
#Linux & Mac
adb pull /system/app ~/Downloads/apps/
Click to expand...
Click to collapse
Does moving installed apps require root???
ri123 said:
Does moving installed apps require root???
Click to expand...
Click to collapse
Ofcourse you need rooted phone..
Only rooted phone can mount system and data partition as READ-WRITE
#Windows
This is for full system folder
adb pull /system c:\android\system (blue colour to create folder on desktop)
This is for full data folder (which include all installed apps and your personal data too)
adb pull /data c:\android\data (blue colour to create folder on desktop)
Etc....

[Q] [q]about rebooting my phone

I delete framework-res apk in system/framework with root explorer,and cannot turn on my phone (s5830)How can I turn on my phone again?(I have a backup up off the apk)
Hei123 said:
I delete framework-res apk in system/framework with root explorer,and cannot turn on my phone (s5830)How can I turn on my phone again?(I have a backup up off the apk)
Click to expand...
Click to collapse
you need is adb and command prompt
adb remount
adb push framework-res.apk /system/framework
optional ones
adb shell chmod 644 /system/framework/framework-res.apk
adb shell chown 0 /system/framework/framework-res.apk
adb shell chgrp 0 /system/framework/framework-res.apk
Just reflash the rom from recovery!
Without wiping data!
Sent from my GT-S5830 using xda premium
well I'm with Amit here. You must have the original ROM's flashable zip file you were currently using?
Simply extract it. Get to PATH_TO_CURRENT_LOCATION\system\framework\framework-res.apk after extracting it. Get the file and push it via adb. Easy as 123.
Reflashing again restores all the system files...? Happened with me... N I use to flash again! Lol Never tried Amits Method
Sent from my GT-S5830 using xda premium
Rushyang said:
well I'm with Amit here. You must have the original ROM's flashable zip file you were currently using?
Simply extract it. Get to PATH_TO_CURRENT_LOCATION\system\framework\framework-res.apk after extracting it. Get the file and push it via adb. Easy as 123.
Click to expand...
Click to collapse
I have only the apk ,and what is adb,and how to push it
Hei123 said:
I have only the apk ,and what is adb,and how to push it
Click to expand...
Click to collapse
!!!! if that the case, just reflash ur rom as stated by pvrx. SOLVED!

Replacing SystemUI.apk in ADB

So I flashed the wrong .zip and now SystemUI.apk is force-closing. Rather than reflash the ROM I'm just going to replace SystemUI.apk using adb (I happen to have the ROM unzipped on my laptop), but want to make sure I have the procedure right.
Reboot to recovery
Then
adb shell
su
rm system/app/SystemUI.apk
exit
And then to push the SystemUI.apk
just
adb push SystemUI.apk system/app/SystemUI.apk
reboot
Do I need to mount system as writable before all of this?
Yes I believe you do
You could put the system.apk into a flashable zip by itself and flash that tho
Less room for error
Sent from my ADR6425LVW using Tapatalk 2
superchilpil said:
Yes I believe you do
You could put the system.apk into a flashable zip by itself and flash that tho
Less room for error
Sent from my ADR6425LVW using Tapatalk 2
Click to expand...
Click to collapse
Thanks.
Now I'm wondering if the permissions will be all mucked up if I just push the file. Is there a way to set permissions in adb?
never mind, got it, chmod 644 system/app/SystemUI.apk
Worked too!
tekhna said:
Thanks.
Now I'm wondering if the permissions will be all mucked up if I just push the file. Is there a way to set permissions in adb?
Click to expand...
Click to collapse
There is, I can't remember the command off the top of my head
Sent from my ADR6425LVW using Tapatalk 2
Adb remount will mount as rrw and you don't have to set permissions the folder already has it. You can also just use a root file explorer app to place it in their
Sent from my ADR6425LVW using XDA
tekhna said:
So I flashed the wrong .zip and now SystemUI.apk is force-closing. Rather than reflash the ROM I'm just going to replace SystemUI.apk using adb (I happen to have the ROM unzipped on my laptop), but want to make sure I have the procedure right.
Reboot to recovery
Then
adb shell
su
rm system/app/SystemUI.apk
exit
And then to push the SystemUI.apk
just
adb push SystemUI.apk system/app/SystemUI.apk
reboot
Do I need to mount system as writable before all of this?
Click to expand...
Click to collapse
hi, i have the same problem. i flashed the wrong zip from here http://forum.xda-developers.com/showthread.php?t=2526039&page=2 and now when i put the usb cable into the pc to backup from nexus root toolkit, it says that driver are not installed, and when i make the test for the drivers systemui crash. so i cant go back to stock rom or restore backup. any ideas? please help me

[Q] Install zip via adb shell instead of cwm

Is there any method to install a modding zip, like SystemUI mod, via adb shell instead of CWM?
You can use tickle my android to push systemui.apk etc ...
Press the thanks button
Sent from my Nexus⁴
"To use Tickle My Android, you will need:
- a rooted Android phone or tablet with USB Debugging enabled and ClockworkMod Recovery installed"
I haven't got CWM, and I don't want to install it to my company phone.
But my phone is rooted. May I install systemui.apk into /system/app and set permissions?
Does it work?
What is the update-binary file in modding zip /META-INF/com/google/android folder?
I can recognize the updater-script in the same directory which is describes the method of the install under CWM. But I don't know what update-binary does.
Update-binary is what provides the functions that updater-script calls. And yeah, you can adb push SystemUI.apk to sdcard, then mount system in adb shell, copy SystemUI.apk to /system and set permissions, then exit adb shell and do adb reboot. I'm not going to into more detail on this because it'll be redundant, as there are many guides on using adb.
Sent from my Desire HD using xda premium

Categories

Resources