13 lines
380 B
Bash
Executable File
13 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
|
|
adb root
|
|
wait ${!}
|
|
adb shell pm enable com.google.android.setupwizard || true
|
|
wait ${!}
|
|
adb shell pm disable com.android.provision || true
|
|
wait ${!}
|
|
adb shell am start org.lineageos.setupwizard/org.lineageos.setupwizard.SetupWizardTestActivity
|
|
wait ${!}
|
|
sleep 1
|
|
adb shell am start com.google.android.setupwizard/com.google.android.setupwizard.SetupWizardTestActivity
|