29 lines
390 B
Markdown
29 lines
390 B
Markdown
## build and debug
|
|
```
|
|
./gradlew installDebug
|
|
```
|
|
## reboot (not needed after debug install)
|
|
```
|
|
adb reboot
|
|
```
|
|
|
|
## adb logs
|
|
```
|
|
adb logcat | grep -i "BringBackQSTitles"
|
|
```
|
|
|
|
## restart systemUI
|
|
```
|
|
adb shell su -c 'killall com.android.systemui'
|
|
```
|
|
|
|
## expand quick settings
|
|
```
|
|
adb shell cmd statusbar expand-settings
|
|
```
|
|
|
|
## screenshot
|
|
```
|
|
adb exec-out screencap -p > screenshot.png
|
|
```
|