我该怎么办工厂重置的Android使用亚行?(How can i do factory reset

2019-07-19 05:34发布

我该怎么办使用ADB命令机器人工厂重置? 我用了亚行重新启动恢复命令来获取复位。 但第三方应用程序不能被清除somehow.Is它正确的方式来实现使用亚行?

其实,我想要做工厂重置通过Java code.What都可以在这里解决Android设备?

Answer 1:

您可以在亚行派的意图MASTER_CLEAR:

adb shell am broadcast -a android.intent.action.MASTER_CLEAR

或作为根

adb shell  "su -c 'am broadcast -a android.intent.action.MASTER_CLEAR'"


Answer 2:

尝试:

adb shell
recovery --wipe_data

这里是列表参数 :

* The arguments which may be supplied in the recovery.command file:
 *   --send_intent=anystring - write the text out to recovery.intent
 *   --update_package=path - verify install an OTA package file
 *   --wipe_data - erase user data (and cache), then reboot
 *   --wipe_cache - wipe cache (but not user data), then reboot
 *   --set_encrypted_filesystem=on|off - enables / diasables encrypted fs


Answer 3:

警告

从@sidharth:“使我的熔岩虹膜阿尔法进入一个bootloop :(”


对于我的摩托罗拉的Nexus 6运行Android 6.0.1棉花糖我做:

adb devices       # Check the phone is running
adb reboot bootloader
# Wait a few seconds
fastboot devices  # Check the phone is in bootloader
fastboot -w       # Wipe user data


Answer 4:

我曾经的Fastboot模式使得它(电话 - Xiomi军情五处的Android 6.0.1)

下面是步骤:

# check if device available
fastboot devices
# remove user data
fastboot erase userdata
# remove cache
fastboot erase cache 
# reboot device
fastboot reboot


文章来源: How can i do factory reset using adb in android?