> For the complete documentation index, see [llms.txt](https://notes.tejpratapsingh.com/android-tips/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.tejpratapsingh.com/android-tips/android-process/kill-a-process-by-id.md).

# Kill a process by Id

First find the process you want to kill

{% content-ref url="/pages/RyO7Yq1mfPJ3D43snq0W" %}
[Find a process by name](/android-tips/android-process/find-a-process-by-name.md)
{% endcontent-ref %}

```bash
adb root
adb shell
kill -9 <process_id>
```
