“ adb push”和“ adb install”有什么区别?


14

请问adb push该文件只复制到目标位置,而adb install将文件复制到目标位置,并还为您适当的权限?

Answers:


14

进一步来说

adb push [file] [path]

将从PC上获取[文件]并将其复制到android设备上的[路径]。

adb install [apkfile]

会将[apkfile]从PC复制到/data/app/android设备上。

主要区别在于,该推送将使您可以指定文件在设备上的存放位置,并将其放置在已知位置(“已安装”应用程序所在的位置)。


14

adb push会将任何文件复制到手机,而adb install仅接受apk文件,并将其安装到设备上。


1
除了将apk复制到/ data / app /之外,“安装”还意味着什么吗?
JohnyTex
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.