Android 如何从PC安装apk文件?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12528219/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to install apk files from PC?
提问by Ninad Chilap
I want to install apk file from PC to tablet. But the problem is that adb is disabled in tablet.
我想将 apk 文件从 PC 安装到平板电脑。但问题是平板电脑中禁用了 adb。
So is there any way I can install apk files from PC to tablet without using adb?
那么有什么方法可以在不使用 adb 的情况下将 apk 文件从 PC 安装到平板电脑?
采纳答案by Androholic
you can save apk file into your device's sdcard. For that do the following. In ddms, select on sdcard. click on "push files to device", and give the apk file path in your pc. Now your apk is inside your sdcard. and from there you can install.
您可以将 apk 文件保存到设备的 SD 卡中。为此,请执行以下操作。在 ddms 中,在 sdcard 上选择。单击“将文件推送到设备”,并在您的电脑中提供 apk 文件路径。现在您的 apk 位于您的 SD 卡中。从那里你可以安装。
回答by Gan
Copy the apk to the sdcard and install it on the tablet. (apk is available in the bin folder of you eclipse project after you have built the project)
将 apk 复制到 sdcard 并安装在平板电脑上。(编译完成后eclipse项目的bin文件夹下有apk)