10 lines
308 B
Bash
10 lines
308 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
adb root
|
||
|
wait ${!}
|
||
|
adb shell pm disable com.android.provision || true
|
||
|
wait ${!}
|
||
|
adb shell pm enable com.cyanogenmod.setupwizard/com.cyanogenmod.setupwizard.ui.SetupWizardActivity || true
|
||
|
wait ${!}
|
||
|
adb shell am start com.cyanogenmod.setupwizard/com.cyanogenmod.setupwizard.ui.SetupWizardActivity
|