How to deploy the android application to emulator like Application Deployment of WP7

倾然丶 夕夏残阳落幕 提交于 2019-12-04 19:29:49

I have used the following procedure.

Procedure to run the apk files in Android Emulator without opening the Eclipse:

  1. Check your installed directory(ex: C:\Program Files (x86)\Android\android-sdk\tools), whether it has the adb.exe or not). If not present in this folder, then download the attachment here, extract the zip files. You will get adb files, copy and paste those three files inside tools folder

  2. Run AVD manager from C:\Program Files (x86)\Android\android-sdk and start the Android Emulator.

  3. Copy and paste the apk file inside the C:\Program Files (x86)\Android\android-sdk\tools

  4. Go to Start -> Run -> cmd

  5. Type cd “C:\Program Files (x86)\Android\android-sdk\tools”

  6. Type adb install example.apk

  7. After getting success command

  8. Go to Application icon in Android emulator, we can see the your application

Thank you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!