我想在摩托罗拉Android上安装我的应用作为测试。如何?请分享我一步一步的链接
答案 0 :(得分:2)
假设您使用的是eclipse插件,则从http://developer.android.com/guide/developing/eclipse-adt.html和http://developer.android.com/guide/developing/device.html#setting-up复制。可能更好,只是自己阅读。
* Declare your application as debuggable in your manifest
在Eclipse中,您可以在查看Manifest时从Application选项卡执行此操作(在右侧,将Debuggable设置为true)。否则,在AndroidManifest.xml文件中,将android:debuggable =“true”添加到元素。
* Enable USB Debugging on your device
在设备上,转到主屏幕,按MENU,选择应用程序>开发,然后启用USB调试。
* Ensure that your development computer can detect your device when connected via USB
设置好并且您的设备通过USB连接后,选择Run>在设备上安装您的应用程序。从Eclipse菜单栏运行(或运行> Debug)。
另见http://developer.android.com/guide/developing/device.html#setting-up
您可以通过SDK工具/目录中的adb设备验证您的设备是否已连接。如果已连接,您将看到设备名称列为“设备”。
如果使用Eclipse,请照常运行或调试。您将看到一个“设备选择器”对话框,其中列出了可用的仿真器和连接的设备。选择要安装的设备并运行该应用程序。