mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
pages*: fix developer.android.com links (#12284)
This commit is contained in:
parent
b18ebd4665
commit
4d6dcb3255
16 changed files with 16 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
||||||
# am
|
# am
|
||||||
|
|
||||||
> Android activity manager.
|
> Android activity manager.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb#am>.
|
> More information: <https://developer.android.com/tools/adb#am>.
|
||||||
|
|
||||||
- Start a specific activity:
|
- Start a specific activity:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# dalvikvm
|
# dalvikvm
|
||||||
|
|
||||||
> Android Java virtual machine.
|
> Android Java virtual machine.
|
||||||
> More information: <https://source.android.com/devices/tech/dalvik>.
|
> More information: <https://developer.android.com/tools/#art_and_dalvik>.
|
||||||
|
|
||||||
- Start a specific Java program:
|
- Start a specific Java program:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Provide information about Android system services.
|
> Provide information about Android system services.
|
||||||
> This command can only be used through `adb shell`.
|
> This command can only be used through `adb shell`.
|
||||||
> More information: <https://developer.android.com/studio/command-line/dumpsys>.
|
> More information: <https://developer.android.com/tools/dumpsys>.
|
||||||
|
|
||||||
- Get diagnostic output for all system services:
|
- Get diagnostic output for all system services:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# logcat
|
# logcat
|
||||||
|
|
||||||
> Dump a log of system messages, including stack traces when an error occurred, and information messages logged by applications.
|
> Dump a log of system messages, including stack traces when an error occurred, and information messages logged by applications.
|
||||||
> More information: <https://developer.android.com/studio/command-line/logcat>.
|
> More information: <https://developer.android.com/tools/logcat>.
|
||||||
|
|
||||||
- Display system logs:
|
- Display system logs:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# pm
|
# pm
|
||||||
|
|
||||||
> Display 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>.
|
> More information: <https://developer.android.com/tools/adb#pm>.
|
||||||
|
|
||||||
- List all installed apps:
|
- List all installed apps:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Take a screenshot of a mobile display.
|
> Take a screenshot of a mobile display.
|
||||||
> This command can only be used through `adb shell`.
|
> This command can only be used through `adb shell`.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb#screencap>.
|
> More information: <https://developer.android.com/tools/adb#screencap>.
|
||||||
|
|
||||||
- Take a screenshot:
|
- Take a screenshot:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# adb install
|
# adb install
|
||||||
|
|
||||||
> Android Debug Bridge Install: push packages to an Android emulator instance or connected Android devices.
|
> Android Debug Bridge Install: push packages to an Android emulator instance or connected Android devices.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb>.
|
> More information: <https://developer.android.com/tools/adb>.
|
||||||
|
|
||||||
- Push an Android application to an emulator/device:
|
- Push an Android application to an emulator/device:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# adb logcat
|
# adb logcat
|
||||||
|
|
||||||
> Dump a log of system messages.
|
> Dump a log of system messages.
|
||||||
> More information: <https://developer.android.com/studio/command-line/logcat>.
|
> More information: <https://developer.android.com/tools/logcat>.
|
||||||
|
|
||||||
- Display system logs:
|
- Display system logs:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# adb reverse
|
# adb reverse
|
||||||
|
|
||||||
> Android Debug Bridge Reverse: reverse socket connections from an Android emulator instance or connected Android devices.
|
> Android Debug Bridge Reverse: reverse socket connections from an Android emulator instance or connected Android devices.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb>.
|
> More information: <https://developer.android.com/tools/adb>.
|
||||||
|
|
||||||
- List all reverse socket connections from emulators and devices:
|
- List all reverse socket connections from emulators and devices:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# adb shell
|
# adb shell
|
||||||
|
|
||||||
> Android Debug Bridge Shell: run remote shell commands on an Android emulator instance or connected Android devices.
|
> Android Debug Bridge Shell: run remote shell commands on an Android emulator instance or connected Android devices.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb>.
|
> More information: <https://developer.android.com/tools/adb>.
|
||||||
|
|
||||||
- Start a remote interactive shell on the emulator or device:
|
- Start a remote interactive shell on the emulator or device:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Android Debug Bridge: communicate with an Android emulator instance or connected Android devices.
|
> Android Debug Bridge: communicate with an Android emulator instance or connected Android devices.
|
||||||
> Some subcommands such as `adb shell` have their own usage documentation.
|
> Some subcommands such as `adb shell` have their own usage documentation.
|
||||||
> More information: <https://developer.android.com/studio/command-line/adb>.
|
> More information: <https://developer.android.com/tools/adb>.
|
||||||
|
|
||||||
- Check whether the adb server process is running and start it:
|
- Check whether the adb server process is running and start it:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# bundletool dump
|
# bundletool dump
|
||||||
|
|
||||||
> Manipulate Android Application Bundles.
|
> Manipulate Android Application Bundles.
|
||||||
> More information: <https://developer.android.com/studio/command-line/bundletool>.
|
> More information: <https://developer.android.com/tools/bundletool>.
|
||||||
|
|
||||||
- Display the `AndroidManifest.xml` of the base module:
|
- Display the `AndroidManifest.xml` of the base module:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# bundletool validate
|
# bundletool validate
|
||||||
|
|
||||||
> Manipulate Android Application Bundles.
|
> Manipulate Android Application Bundles.
|
||||||
> More information: <https://developer.android.com/studio/command-line/bundletool>.
|
> More information: <https://developer.android.com/tools/bundletool>.
|
||||||
|
|
||||||
- Verify a bundle and display detailed information about it:
|
- Verify a bundle and display detailed information about it:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Manipulate Android Application Bundles.
|
> Manipulate Android Application Bundles.
|
||||||
> Some subcommands such as `bundletool validate` have their own usage documentation.
|
> Some subcommands such as `bundletool validate` have their own usage documentation.
|
||||||
> More information: <https://developer.android.com/studio/command-line/bundletool>.
|
> More information: <https://developer.android.com/tools/bundletool>.
|
||||||
|
|
||||||
- Display help for a subcommand:
|
- Display help for a subcommand:
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# sdkmanager
|
# sdkmanager
|
||||||
|
|
||||||
> Install packages for the Android SDK.
|
> Install packages for the Android SDK.
|
||||||
> More information: <https://developer.android.com/studio/command-line/sdkmanager>.
|
> More information: <https://developer.android.com/tools/sdkmanager>.
|
||||||
|
|
||||||
- List available packages:
|
- List available packages:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Zip archive alignment tool.
|
> Zip archive alignment tool.
|
||||||
> Part of the Android SDK build tools.
|
> Part of the Android SDK build tools.
|
||||||
> More information: <https://developer.android.com/studio/command-line/zipalign>.
|
> More information: <https://developer.android.com/tools/zipalign>.
|
||||||
|
|
||||||
- Align the data of a ZIP file on 4-byte boundaries:
|
- Align the data of a ZIP file on 4-byte boundaries:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue