blob: 29698afb022bade3c4ae1dced51b8b73ad7f6539 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
adb root
wait ${!}
if adb shell pm list packages | grep com.google.android.setupwizard; then
adb shell pm disable com.google.android.setupwizard || true
wait ${!}
fi
if adb shell pm list packages | grep com.android.provision; then
adb shell pm disable com.android.provision || true
wait ${!}
fi
adb shell am start com.aicp.setupwizard/com.aicp.setupwizard.SetupWizardTestActivity
|