Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you install an APK file it build from corona sdk in the Android emulator?

Tags:

apk

lua

coronasdk

I am a pro user of corona sdk. And I build apk file with my own keyStore file. In that apk does not install in the android emulator?

like image 690
saravanan Avatar asked Aug 10 '12 14:08

saravanan


People also ask

How do you install an APK file in the Android emulator?

Step to install APK in Emulator : Step 1 -> Run the emulator step 2-> Paste the apk in SDK manager tools and platform-tools folders. Step 3->Run this command adb install AppNaem. APK . Wait for 2 min it's show Success Message.

Can we install APK in emulator?

We just need the APK file to install it in the Emulator. First of all, we still have to open the Emulator and after that drag, your APK file and drop it in the emulator anywhere and that's it it will simply install that app in the Emulator.

How do I open an .apk file?

Since APK files come in compressed ZIP format, any ZIP decompression tool can open it. So, for viewing the contents of an APK file, all you have to do is rename its extension to . zip and open it. Or, you can open it directly through an open dialogue box of a zip application.


1 Answers

You should be able to use adb. While the emulator is running, just run adb install YourApp.apk.

like image 153
kelnos Avatar answered Sep 27 '22 18:09

kelnos