How can i do factory reset using adb in android?
카테고리 없음 :
2017. 8. 30. 09:53
반응형
ou can send intent MASTER_CLEAR in adb:
adb shell am broadcast -a android.intent.action.MASTER_CLEAR
or as root
adb shell "su -c 'am broadcast -a android.intent.action.MASTER_CLEAR'"
/cache/recovery/command 파일을 만들고
내용에 아래와 같이 써준다.
--wipe_data
--reason=MasterClearConfirm
--locale=ko_KR
저장 후
setprop sys.powerctl reboot,recovery
이렇게 해주면 recovery 로 부팅하면서 공장초기화를 처리한다.
반응형