如何在Android模拟器上安装的SD卡上安装应用程序?
我正在尝试使用 Windows 平台在 SD 卡上安装我自己的 Android 应用程序。 设置
android:installLocation="preferExternal"
首先我在 AndroidManifest.xml 中
然后我通过 eclipse 启动模拟器。在创建此 AVD 时,我给了 SD 卡大小 500 MiB,并在 AVD 管理器中设置了 SD 卡支持属性。但错误是
[2011-03-22 05:01:31 - SDcard演示] 无法安装 SDcardDemo.apk 设备'模拟器-5554! [2011-03-22 05:01:31 - SDcardDemo](空)
我也尝试使用命令行安装。
D:\DATA\C\android-sdk_r06-windows\android-sdk-windows\platform-tools>adb install -avd test_AVD SDcardDemo.apk
43 KB/s(0.328 秒内 14739 字节)错误: 未知选项:-a
I am trying to install my own android application on SDcard using windows platform. First I set
android:installLocation="preferExternal"
in AndroidManifest.xml
Then I launched emulator through eclipse. While creating this AVD I had given SDcard size 500 MiB and had set the SDcard support property also in AVD Manager. But the error is
[2011-03-22 05:01:31 - SDcardDemo]
Failed to install SDcardDemo.apk on
device 'emulator-5554! [2011-03-22
05:01:31 - SDcardDemo] (null)
I also tried to install using command line.
D:\DATA\C\android-sdk_r06-windows\android-sdk-windows\platform-tools>adb install -avd test_AVD SDcardDemo.apk
43 KB/s (14739 bytes in 0.328s) Error:
Unknown option: -a
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
adb install -s [apk 路径]
是解决我的问题的命令。
adb install -s [path to apk]
is the command which solved my problem.
转到命令提示符
并写入
adb install filename.apk
goto command prompt
and write
adb install filename.apk