|
|
@ -36,6 +36,7 @@ Other languages: [:cn: Chinese](./README.md) |
|
|
|
* [View Reception Activity](#view-reception-activity) |
|
|
|
* [View Reception Activity](#view-reception-activity) |
|
|
|
* [View Running Services](#view-running-services) |
|
|
|
* [View Running Services](#view-running-services) |
|
|
|
* [Query package detail information](#query-package-detail-information) |
|
|
|
* [Query package detail information](#query-package-detail-information) |
|
|
|
|
|
|
|
* [Query application installation path](#query-application-installation-path) |
|
|
|
* [Interact with Applications](#interact-with-applications) |
|
|
|
* [Interact with Applications](#interact-with-applications) |
|
|
|
* [Start an Activity](#start-an-activity) |
|
|
|
* [Start an Activity](#start-an-activity) |
|
|
|
* [Start a Service](#start-a-service) |
|
|
|
* [Start a Service](#start-a-service) |
|
|
@ -754,6 +755,26 @@ Dexopt state: |
|
|
|
te] |
|
|
|
te] |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Query application installation path |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
command: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
adb shell pm path <PACKAGE> |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Output shows application installation path. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example output: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
adb shell pm path ecarx.weather |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package:/data/app/ecarx.weather-1.apk |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
## Interact with Applications |
|
|
|
## Interact with Applications |
|
|
|
|
|
|
|
|
|
|
|
The most used syntax for interacting with applications is : |
|
|
|
The most used syntax for interacting with applications is : |
|
|
|