Nếu bạn cảm thấy thoải mái khi sử dụng dòng lệnh, một giải pháp tôi thích là lệnh pm của Android. Nó có thể dễ dàng được gọi bằng cách sử dụng adb như vậy:
$ 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
Thay thế test
bằng bất cứ gói nào bạn đang tìm kiếm.
pm có nhiều tùy chọn có thể hữu ích tùy thuộc vào những gì bạn muốn làm:
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.