Se você estiver confortável usando a linha de comando, uma solução que eu gosto é o comando pm do Android. Pode ser chamado facilmente usando adb da seguinte maneira:
$ adb shell "pm list packages -f test"
package:/system/app/AutomationTest_JBUP.apk=com.sec.android.app.DataCreate
package:/system/app/BluetoothTest.apk=com.sec.android.app.bluetoothtest
Substitua test
por qualquer pacote que esteja procurando.
pm tem uma variedade de opções que podem ser úteis, dependendo do que você deseja fazer:
usage: pm list packages [-f] [-d] [-e] [-s] [-3] [-i] [-u] [FILTER]
pm list packages: prints all packages, optionally only
those whose package name contains the text in FILTER. Options:
-f: see their associated file.
-d: filter to only show disbled packages.
-e: filter to only show enabled packages.
-s: filter to only show system packages.
-3: filter to only show third party packages.
-i: see the installer for the packages.
-u: also include uninstalled packages.