84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
因为android无法使用grep 所以在adb shell中无法获取指定进程的pid然后现在通过代码获取了 指定进程的pid号之后 该怎么去kill这个进程呢 假使需要获得pid的进程是com.example.cr pid是1234 (这个是在代码中实现的) 然后在写脚本的时候要怎么去调用这个pid去kill这个进程啊
小伙看你根骨奇佳,潜力无限,来学PHP伐。
Similar questions have been asked before,
adb shell gpreg processname
Can’t get the pid? What version system is yours? Moreover, has your process obtained root privileges? Killing without root permissions is meaningless.
adb shell kill -9 pid
adb shell kill 1234?
adb shell kill 1234
Similar questions have been asked before,
Can’t get the pid? What version system is yours?
Moreover, has your process obtained root privileges? Killing without root permissions is meaningless.
adb shell kill -9 pid
adb shell kill 1234
?