Will adb push
only copy the file into the target location whereas adb install
copies the file into the target location and also sets the proper permission for you?
adb push
Copiez uniquement le fichier dans l'emplacement cible, tandis que adb install
copie le fichier dans l'emplacement cible et définit également la permission appropriée pour tu?
Will adb push
only copy the file into the target location whereas adb install
copies the file into the target location and also sets the proper permission for you?
plus spécifiquement
adb push [file] [path]
prendra [fichier] du PC et copierez-le sur [Chemin] sur le périphérique Android.
adb install [apkfile]
copiera [apkfile] du PC dans /data/app/
sur le périphérique Android.
La principale différence étant que Push vous permettra de spécifier l'endroit où vous souhaitez que le fichier soit sur l'appareil et l'installe dans un emplacement connu (l'emplacement "installé" des applications existe).
More specifically
adb push [file] [path]
will take [file] from the PC and copy it to [path] on the android device.
adb install [apkfile]
will copy [apkfile] from the pc into /data/app/
on the android device.
The main difference being that push will let you specify where you want the file to go on the device, and install puts it in a known location (the location "installed" apps exist in).
adb push
copiera n'importe quel fichier sur le téléphone, tandis que 9988777664
n'acceptera qu'un fichier APK et l'installera sur l'appareil.
adb push
will copy any file to the phone, whereas adb install
will only accept an apk file, and will install it onto the device.
© 2022 www.demandez.top All Rights Reserved. Questions et réponses Accueil Tous les droits sont réservés