Reputation: 197
I have a list of .apk files on a webpage which I want to be able to download directly from my phone. So I should be able to navigate to that webpage and click the .apk link and it should download the app on my phone. Basically right now my web page is listing these apk files but if I try to click on one of the links using an android emulator, nothing happens. Any advice on how I can make these .apk links downloadable directly from the phone?
Upvotes: 1
Views: 2859
Reputation: 43
The emulator doesn't have any program to install apps like that. Here's what you can do though: Download the app onto your computer and use adb to install it on your emulator, like so:
That's it. The last command might take upto a minute, or more. When its done you should see your app installed in the emulator. For more details on using adb, please see here: http://developer.android.com/tools/help/adb.html#commandsummary
Upvotes: 0
Reputation: 3441
The emulator might not support downloads. I would try it with your phone, or if your webpage is not yet available find one that does have .apk and try it.
Upvotes: 1