add debug docs

This commit is contained in:
2025-12-27 04:22:19 +05:00
parent b081024269
commit e4d8f34bb1

28
DEBUG_README.md Normal file
View File

@@ -0,0 +1,28 @@
## 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
```