Working - Remove SprintID from Launcher - Launcher2.apk
This apk will replace the SprintID button on the Froyo launcher with the stock browser button. This was my first foray into Android .apks. Enjoy!
The launcher is attached to the thread. You'll want to use adb to install. Put Launcher2.apk in your tools folder, adb remount, and then give it the old "adb push Launcher2.apk /system/app".
Update: On second thought, I can't remount through adb on my phone so you'll want to get a terminal editor to install the apk. Steps are as follows once in terminal (this assumes that you have put the apk on the root of the sd card):
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
cat /sdcard/Launcher2.apk > /system/app/Launcher2.apk
mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
reboot
This apk will replace the SprintID button on the Froyo launcher with the stock browser button. This was my first foray into Android .apks. Enjoy!
The launcher is attached to the thread. You'll want to use adb to install. Put Launcher2.apk in your tools folder, adb remount, and then give it the old "adb push Launcher2.apk /system/app".
Update: On second thought, I can't remount through adb on my phone so you'll want to get a terminal editor to install the apk. Steps are as follows once in terminal (this assumes that you have put the apk on the root of the sd card):
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
cat /sdcard/Launcher2.apk > /system/app/Launcher2.apk
mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
reboot
Last edited: