pm, settings: refresh pages (#9717)

* Refresh `pm`:
- simplify descriptions
- fix placeholder for keywords

* Refresh `settings`:
- deprecate `the` in favor of `a`

* pm,settings: update Tamil translation

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Emily Grace Seville
2023-01-04 02:53:22 +10:00
committed by GitHub
parent cbb8ded234
commit d6699a289f
4 changed files with 18 additions and 18 deletions

View File

@@ -1,24 +1,24 @@
# pm
> Show information about apps on an Android device.
> Display information about apps on an Android device.
> More information: <https://developer.android.com/studio/command-line/adb#pm>.
- Print a list of all installed apps:
- List all installed apps:
`pm list packages`
- Print a list of all installed system apps:
- List all installed system apps:
`pm list packages -s`
- Print a list of all installed 3rd-Party apps:
- List all installed 3rd-Party apps:
`pm list packages -3`
- Print a list of apps matching specific keywords:
- List apps matching specific keywords:
`pm list packages {{keywords}}`
`pm list packages {{keyword1 keyword2 ...}}`
- Print the path of the APK of a specific app:
- Display a path of the APK of a specific app:
`pm path {{app}}`

View File

@@ -7,11 +7,11 @@
`settings list {{global}}`
- Get the value of a specific setting:
- Get a value of a specific setting:
`settings get {{global}} {{airplane_mode_on}}`
- Set the value of a setting:
- Set a specific value of a setting:
`settings put {{system}} {{screen_brightness}} {{42}}`