@echo off
for /F %%i in ('adb shell pidof com.packagename.youself') do ( set GetPid=%%i)
echo 得到PID:%GetPid%
adb shell logcat --pid %GetPid% -s Unity
用法 :for循环那行pidof后面 包名 换成你自己的包名。
@echo off
for /F %%i in ('adb shell pidof com.packagename.youself') do ( set GetPid=%%i)
echo 得到PID:%GetPid%
adb shell logcat --pid %GetPid% -s Unity
用法 :for循环那行pidof后面 包名 换成你自己的包名。