Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the Setup Wizard app in Android 4+? [closed]

Tags:

android

adb

I need to bypass the setup wizard on my Nexus 5 running 4.4 only using ADB as my digitizer and screen are broken. I just want to find the Setup Wizard app and remove it via ADB. Does anyone know how to do this?

like image 587
Drew S Avatar asked Dec 15 '13 10:12

Drew S


People also ask

How do I disable Android setup wizard?

You can manually disable the setup wizard on the device. From Android Setup > Apps & Notifications. Search for All apps and show System apps (hidden by default). Select and disable Android Setup.

How do I exit setup wizard?

If you want to exit the Setup Wizard, click Exit. If the configuration is correct, click Finish to apply the settings and complete the Setup Wizard configuration.

What is setup wizard on my Android phone?

A setup wizard is a tool that is installed in the android phone to help the user to manage applications. The setup wizard performs various functions. The primary purpose of the setup wizard that has a premium license is to allow the user to restore previous applications on a new phone.


1 Answers

The wizard is inside the "GoogleServiceFramework.apk", in the system/app folder. You need to root and remount your system to rw to delete the apk. But after you delete it, you cannot use any Goolge service.

However, the mechanism behind this setup wizard is simple. It just declares that it is also a "HOME" application with priority=2. So you can just use package manager (pm) on adb shell to disable the wizard start up activity. Then you can see the normal home application directly.

like image 137
Robin Avatar answered Oct 17 '22 00:10

Robin