[Tutorial] How to check installed android app package name and UID (UserID)
[Tutorial] How to check installed android app package name and UID (UserID)
follow the steps below to check the package name of any installed android app
![[Image: how-to-check-the-package-name-of-an-inst...id-app.jpg]](https://www.hovatek.com/blog/bpyeki/uploads/2019/02/how-to-check-the-package-name-of-an-installed-android-app.jpg)
follow the steps below to check the UserID or UID of any installed android app
To check the userId or UID, you must know the package name of the app you intent to check. The guide above already shows how to find package name![[Image: how-to-check-the-UserID-or-UID-of-an-ins...-app-1.jpg]](https://www.hovatek.com/blog/bpyeki/uploads/2019/02/how-to-check-the-UserID-or-UID-of-an-installed-android-app-1.jpg)
adb shell dumpsys package com.package.name | grep userId
e.g using link2sd
adb shell dumpsys package com.buak.Link2SD | grep userId![[Image: how-to-check-the-UserID-or-UID-of-an-ins...-app-2.jpg]](https://www.hovatek.com/blog/bpyeki/uploads/2019/02/how-to-check-the-UserID-or-UID-of-an-installed-android-app-2.jpg)
![[Image: how-to-check-the-UserID-or-UID-of-an-ins...-app-3.jpg]](https://www.hovatek.com/blog/bpyeki/uploads/2019/02/how-to-check-the-UserID-or-UID-of-an-installed-android-app-3.jpg)
(16-07-2019, 09:41 PM)mustysmart Thanks so much sir but my question is that can we change the user ID?
Sent from my A1 lite using Tapatalk
(23-07-2019, 09:41 AM)Inevitable Thanks. Don't add "| grep userId" after package name. It will end up with error.. It took me minutes to figure this out... I run a Windows 10 OS
Thanks for this guide hovatek. You guys are always there for us.