修改开机动画
adb shell setprop persist.sys.root_access 3
adb root
adb remount
adb push bootanimation.zip system/media/bootanimation.zip
adb shell reboot
查看包名
adb shell dumpsys activity top | grep ACTIVITY
pull出已经安装的app
adb pull /system/app/WifiDisplay/WifiDisplay.apk
手动打开桌面
adb shell am start com.android.launcher3/.uioverrides.QuickstepLauncher
卸载系统应用
adb shell pm uninstall --user 0 com.xxx.xxx
查看资源使用情况
adb shell top
查找文件
find | grep "WifiDisplay.apk"