每次运行 Android 应用程序时都必须选择设备的替代方法是什么?
有没有办法让 Eclipse 在每次运行我正在开发的 Android 应用程序时不显示 Android 设备选择器对话框?我使用的是正在运行的 Android 设备,而不是 AVD。必须有某个地方可以将我的默认设备设置为 Android 设备,这样我就不必每次都双击 ADC 对话框中的设备条目。
Is there some way to have Eclipse NOT present the Android Device Chooser dialog every time I run the Android application I'm developing? I'm using a running Android device, not an AVD. There's got to be some place I can set my default device to be the Android device so that I don't have to double-click on the device entry in the ADC dialog everytime.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单击 Eclipse 菜单按钮
run
->运行配置
->android 应用程序
->您的项目名称
->target
并选择automatic
请注意,这仅在设备的 api 级别 >= 您项目的构建 api 级别时才有效。例如,如果您正在针对 2.1 进行构建,但在手机上运行 1.6,您仍然会获得 Android 设备选择器。您还会注意到,在这种情况下,设备左侧有一个红色的 X。
Click the Eclipse menu button
run
->run configurations
->android application
->your project name
->target
and selectautomatic
Note that this will only work if the device's api level is >= your project's build api level. For instance if you are building against 2.1 but running 1.6 on your phone you will still get the Android Device Chooser. You will also notice that there is a red X to the left of your device in this case.