terminal steps for removing google maps

gt3dan

Well-known member
Nov 3, 2009
53
3
0
Visit site
asking this question for a friend because i don't know. does anyone know the terminal emulator steps for removing google maps? he is using adamz's 6.0 rom and can't get it off to be able to update it. any help is appreciated
 
R

Roy Aguilera

su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cd /system/app
rm _____________.apk
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system

Jorge, can you fill in the blank.
I don't know what the true name is for google goggles.
Thanks
 

nox

Retired Super Moderator
Jan 15, 2010
1,105
40
0
www.AndroidCentral.com
Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
rm /system.app/Maps.apk
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot
Think thats it. Tell him to make a nandroid before though.
Don't want us bricking his phone lol
 

thebizz

phone addict
Nov 8, 2009
3,568
42
0
Visit site
Yep change it to maps.apk.bak will work also should uninstall. It
My bad meant that shouldn't brick him auto correct
 

nox

Retired Super Moderator
Jan 15, 2010
1,105
40
0
www.AndroidCentral.com
Alrighty then. Solved.

Here's to remove it
Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
rm /system.app/Maps.apk
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot
Or to just rename it - Recommended
Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cat /system/app/Maps.apk > /system/app/Maps.apk.bak
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot
To get it back (if you just renamed it)
Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cat /system/app/Maps.apk.bak > /system/app/Maps.apk
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
sync
reboot
 
Last edited: