Most of Android 2.3 devices have low internel memory.Some popular application whatsapp,twitter,facebook is not have move sd card option so You have option to root your devices.
But by rooting your device lost warranty.
By using this simple step you can move any application to sd card
But by rooting your device lost warranty.
By using this simple step you can move any application to sd card
Note: This requires some general knowledge on android and computers. The tutorial is not noob friendly.
Step 1: Get the Android SDK and extract it to your desktop or any other folder.
Step 2: Install the USB DRIVER for your device.
Step 3: Connect your phone via USB and enable USB Debugging
Step 4: Open a command prompt and navigate to the android sdk: sdk/platform-tools
Step 5: Run the following commands:
Code:
adb devices
Now check if your device is listed.
Code:
adb shell
Code:
pm set-install-location 2
(Does not work on old phones, use this one instead:)
Code:
pm setInstallLocation 2
Code:
exit
You should now be able to move all your apps to the SD Card.
Enjoy.
Got questions? Feel free to ask I didn't go into detail.
How to undo:
Code:
pm set-install-location 1
(Does not work on old phones, use this one instead:)
Code:
pm setInstallLocation 1
Step 1: Get the Android SDK and extract it to your desktop or any other folder.
Step 2: Install the USB DRIVER for your device.
Step 3: Connect your phone via USB and enable USB Debugging
Step 4: Open a command prompt and navigate to the android sdk: sdk/platform-tools
Step 5: Run the following commands:
Code:
adb devices
Now check if your device is listed.
Code:
adb shell
Code:
pm set-install-location 2
(Does not work on old phones, use this one instead:)
Code:
pm setInstallLocation 2
Code:
exit
You should now be able to move all your apps to the SD Card.
Enjoy.
Got questions? Feel free to ask I didn't go into detail.
How to undo:
Code:
pm set-install-location 1
(Does not work on old phones, use this one instead:)
Code:
pm setInstallLocation 1
No comments:
Post a Comment