Posts

Showing posts from February, 2012

Repair HFS+ when your BootCamp is error

Restart your Mac. As soon as it turns on, even before you hear it go bong, hold down Cmd+S. The system will boot showing a lot of text. If it doesn't and you see the Apple logo, you've waited too long. Reboot and try again. When at the prompt type  fsck -f . If changes are successfully made it will repeat the process then say "Modifications have been made". Then simply type in  reboot  and you should be able to partition your drive successfully. http://hints.macworld.com/article.php?story=20080120064811786

How to remove default/preloaded applications like browser,camera,contacts...

Suppose u have developed a new contact application which is much better than the preloaded contact application in android..so when u want to install it eclipse will throw u bunch of error saying "Please uninstall the contact application first by adb uninstall "package name". When u tried to do that...Alas...it did not work...saying FAILED The reason for this is that u don't have the root access and u have only read only access..So to change the access and remove the contacts(any application) follow the below instructions.. Start your emulator Execute "adb shell" in on terminal from SDK_ROOT/tool folder Mount your system folder with read/write permission mount -o remount,rw /dev/block/mtdblock3 /system Go to system/apps folder cd /system/apps Remove APK rm defaultapp.apk   Bingo Check your emulator.The default application is gone.Now u can install your application with eclipse. N.B.:This is required to remove the apps already present in emulator...If u want ...