Skip to content

Instantly share code, notes, and snippets.

@nemanjan00
Last active January 19, 2024 11:19
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nemanjan00/a3c39d94b41f0cc4c4b7e7f404f3fd8a to your computer and use it in GitHub Desktop.
Save nemanjan00/a3c39d94b41f0cc4c4b7e7f404f3fd8a to your computer and use it in GitHub Desktop.
Disabling Android Setup wizard

Disabling Android Setup wizard

To disable setup wizard:

mv /system/priv-app/SetupWizard/SetupWizard.apk /system/priv-app/SetupWizard/SetupWizard.apk.bkp

To make device think setup is done:

settings put global setup_wizard_has_run 1
settings put secure user_setup_complete 1
settings put global device_provisioned 1

Additional step on Samsung devices

Apperently, they are not writing setup step module and have their own setup app, because, Samsung.

mv /system/priv-app/SamsungExperienceService/SamsungExperienceService.apk /system/priv-app/SamsungExperienceService/SamsungExperienceService.apk.bkp
@Mueen16
Copy link

Mueen16 commented Sep 1, 2021

@Mueen16
Copy link

Mueen16 commented Sep 1, 2021

mv /system/priv-app/SamsungExperienceService/SamsungExperienceService.apk /system/priv-app/SamsungExperienceService/SamsungExperienceService.apk.bkp

@Mueen16
Copy link

Mueen16 commented Sep 29, 2021

#wizard-container

@steadfasterX
Copy link

awesome. thx for sharing it was exactly I was searching for!

@tadekdudek
Copy link

Thanks, works!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment