equal
deleted
inserted
replaced
80 |
80 |
81 List installed package names (with path to ``.apk`` files!):: |
81 List installed package names (with path to ``.apk`` files!):: |
82 |
82 |
83 $ adb shell 'pm list packages -f' |
83 $ adb shell 'pm list packages -f' |
84 |
84 |
85 Uninstall application by it name:: |
85 Uninstall application by its package name:: |
86 |
86 |
87 $ adb uninstall PACKAGE_NAME |
87 $ adb uninstall PACKAGE_NAME |
|
88 |
|
89 Disable/enable application:: |
|
90 |
|
91 $ adb shell pm disable PACKAGE_NAME |
|
92 $ adb shell pm enable PACKAGE_NAME |
|
93 |
|
94 List of disabled packages:: |
|
95 |
|
96 $ adb shell pm list packages -d |
88 |
97 |
89 List currently run activities:: |
98 List currently run activities:: |
90 |
99 |
91 $ adb shell 'dumpsys activity' |
100 $ adb shell 'dumpsys activity' |
92 |
101 |