mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-14 17:55:52 +02:00
adb-shell: add Dutch translation
This commit is contained in:
parent
7a9ed54acd
commit
6124978557
1 changed files with 36 additions and 0 deletions
36
pages.nl/common/adb-shell.md
Normal file
36
pages.nl/common/adb-shell.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# adb shell
|
||||||
|
|
||||||
|
> Android Debug Bridge Shell: Voer externe shell-opdrachten uit op een Android-emulatorinstantie of aangesloten Android-apparaten.
|
||||||
|
> Meer informatie: <https://developer.android.com/studio/command-line/adb>.
|
||||||
|
|
||||||
|
- Start een externe interactieve shell op de emulator of het apparaat:
|
||||||
|
|
||||||
|
`adb shell`
|
||||||
|
|
||||||
|
- Haal alle eigenschappen op van de emulator of het apparaat:
|
||||||
|
|
||||||
|
`adb shell getprop`
|
||||||
|
|
||||||
|
- Zet alle runtime-machtigingen terug naar hun standaard:
|
||||||
|
|
||||||
|
`adb shell pm reset-permissions`
|
||||||
|
|
||||||
|
- Een gevaarlijke machtiging voor een toepassing intrekken:
|
||||||
|
|
||||||
|
`adb shell pm revoke {{pakket}} {{toestemming}}`
|
||||||
|
|
||||||
|
- Activeer een sleutelgebeurtenis:
|
||||||
|
|
||||||
|
`adb shell input keyevent {{sleutelcode}}`
|
||||||
|
|
||||||
|
- Wis de gegevens van een applicatie op een emulator of apparaat:
|
||||||
|
|
||||||
|
`adb shell pm clear {{pakket}}`
|
||||||
|
|
||||||
|
- Start een activiteit op emulator of apparaat:
|
||||||
|
|
||||||
|
`adb shell am start -n {{pakket}}/{{activiteit}}`
|
||||||
|
|
||||||
|
- Start de thuisactiviteit op een emulator of apparaat:
|
||||||
|
|
||||||
|
`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN`
|
Loading…
Add table
Reference in a new issue