How to deploy android application to a device?

后端 未结 5 1832
南旧
南旧 2020-12-09 15:23

I developed an application. Now I want to deploy it on real device. Can any body please tell me the steps and the requirements to deploy it on a real device.

Thanks

5条回答
  •  余生分开走
    2020-12-09 16:02

    There are multiple ways:

    1. If you don't use eclipse, you can use adb tool. adb -d install PATH_TO_YOUR_APK_FILE
    2. If you use eclipse, you can click run application in eclipse's launch menu. If this doesn't work, make sure you have "USB Debugging Mode" checked on your android phone. It's in the application menu.
    3. You can export your package and sign it! And then browse to it to install.

提交回复
热议问题