adb-install, adb-reverse, adb-shell: add French translation (#7667)

This commit is contained in:
Nicolas Hansse
2022-01-18 15:46:49 +01:00
committed by GitHub
parent 0c8ed2af5c
commit cf250037d7
3 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# adb shell
> Android Debug Bridge Shell: Exécute une commande shell sur une instance d'émulateur Android ou un appareil Android.
> Plus d'informations : <https://developer.android.com/studio/command-line/adb>.
- Démarre une session shell interactive sur l'émulateur/l'appareil :
`adb shell`
- Récupère toutes les propriétés depuis un émulateur ou un appareil :
`adb shell getprop`
- Remet toutes les permissions courante à leurs valeurs par défaut :
`adb shell pm reset-permissions`
- Révoque une permission dangereuse pour une application :
`adb shell pm revoke {{paquet}} {{permission}}`
- Déclenche un événement clé :
`adb shell input keyevent {{code}}`
- Nettoie les données d'une application sur un émulateur ou un appareil :
`adb shell pm clear {{paquet}}`
- Démarre une activité sur un émulateur ou un appareil :
`adb shell am start -n {{paquet}}/{{activité}}`
- Démarre une activité maison depuis un émulateur ou un appareil :
`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN`