Jazziette
Android Expert
Huawei Ascend - How to re-install STOCK Canvas!
stock m860 ui
http://db.tt/NauUT2R
download adb and connect phone to computer
You can use the adb commands pull and push to copy files to and from an emulator/device instance's data file.
Unlike the install command, which only copies an .apk file to a specific location, the pull and push commands let you copy arbitrary directories and files to any location in an emulator/device instance.
To copy a file or directory (recursively) from the emulator or device, use
adb pull
To copy a file or directory (recursively) to the emulator or device, use
adb push
In the commands, and refer to the paths to the target files/directory on your development machine (local) and on the emulator/device instance (remote).
reboot
Here's an example:
adb push foo.txt /sdcard/foo.txt
* If you are unsuccessful you may have to flash back to stock following these directions:
http://androidforums.com/huawei-ascend/282038-how-flash-huawei-ascend-stock.html
stock m860 ui
http://db.tt/NauUT2R
download adb and connect phone to computer
You can use the adb commands pull and push to copy files to and from an emulator/device instance's data file.
Unlike the install command, which only copies an .apk file to a specific location, the pull and push commands let you copy arbitrary directories and files to any location in an emulator/device instance.
To copy a file or directory (recursively) from the emulator or device, use
adb pull
To copy a file or directory (recursively) to the emulator or device, use
adb push
In the commands, and refer to the paths to the target files/directory on your development machine (local) and on the emulator/device instance (remote).
reboot
Here's an example:
adb push foo.txt /sdcard/foo.txt
* If you are unsuccessful you may have to flash back to stock following these directions:
http://androidforums.com/huawei-ascend/282038-how-flash-huawei-ascend-stock.html