mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 10:06:00 +02:00
adb shell: add Polish translation
This commit is contained in:
parent
58548777a1
commit
3d7c8ad744
1 changed files with 36 additions and 0 deletions
36
pages.pl/common/adb-shell.md
Normal file
36
pages.pl/common/adb-shell.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# adb shell
|
||||
|
||||
> Android Debug Bridge Shell: uruchamiaj zdalne polecenia powłoki na instancji emulatora Androida lub podłączonych urządzeniach z Androidem.
|
||||
> Więcej informacji: <https://developer.android.com/studio/command-line/adb>.
|
||||
|
||||
- Uruchom interaktywną zdalną powłokę na emulatorze / urządzeniu:
|
||||
|
||||
`adb shell`
|
||||
|
||||
- Pobierz wszystkie właściwości z emulatora lub urządzenia:
|
||||
|
||||
`adb shell getprop`
|
||||
|
||||
- Przywróć wszystkie uprawnienia wykonawcze do ich wartości domyślnych:
|
||||
|
||||
`adb shell pm reset-permissions`
|
||||
|
||||
- Odwołaj niebezpieczne pozwolenie dla aplikacji:
|
||||
|
||||
`adb shell pm revoke {{paczka}} {{pozwolenie}}`
|
||||
|
||||
- Wywołaj zdarzenie klawisza:
|
||||
|
||||
`adb shell input keyevent {{kod_klucza}}`
|
||||
|
||||
- Wyczyść dane aplikacji na emulatorze lub urządzeniu:
|
||||
|
||||
`adb shell pm clear {{paczka}}`
|
||||
|
||||
- Rozpocznij aktywność na emulatorze / urządzeniu:
|
||||
|
||||
`adb shell am start -n {{paczka}}/{{aktywność}}`
|
||||
|
||||
- Rozpocznij aktywność domową na emulatorze lub urządzeniu:
|
||||
|
||||
`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN`
|
Loading…
Add table
Reference in a new issue