Monday, March 18, 2013

Restoring Accidentally deleted launcher

Incase you have deleted your stock launcher accidentally here is the soultion:


Are you using Ninja 3 ? Is your Phone rooted ? You should already be having recovery . You can go into recovery by pressing Volume + button with Power Button on startup. Incase you need to install recovery follow this link : http://androidatyourtips.blogspot.in/2013/01/how-to-manually-install-recovery.html Incase you just need the HOLO launcher download or Ninja 3 stock launcher http://www.mediafire.com/?88cv8i0ft21y79n 


Hopefully you have rooted the phone and have Android tools installed. In android cmd terminal give these commands after downloading the launcher and placing it in the android bin folder. 
adb root 
adb remount
adb push MLabsLauncher.apk /system/apps
adb reboot

Hopefully this will solve your problem.

Saturday, January 12, 2013

How to Manually Install Recovery


Messed up your Recovery option on android? Or Do you want to manually install custom recovery ?

 CyanogenMod Recovery not working ?

Is your phone not going into recovery mode and showing just logo ?

Here is your solution to all these problems ::::::::::

Download the recovery image file of your choice or here is the stock recovery.img
Save it to your SD Card directly and not in any folder.

Download the flash_image.zip and unzip to your PC folder. install the ADB from Android Sdk site, then you will be able to run adb command
OPEN ADB and run the commands:


adb root 
(This will start ADB as root, or notify if it is already running as root.)
adb remount 
(This will mount the system partition (/system) as writable, allowing the following)
adb push flash_image /system/bin 
(This will send the flash_image script into the /system/bin, so we can use it from within the shell.)
adb shell chmod 0755 /system/bin/flash_image 
(Finally, change the permissions of the script to allow it to perform the desired action. Now that the script is installed, we are ready to proceed with flashing the custom recovery, saved on the root of the SD card earlier: )
adb shell flash_image recovery /sdcard/recovery.img



then run “adb reboot recovery” , the phone will be rebooted to recovery mode. you will be able to run the option called “Flash zip from sd card”
Hopefully it will look like this