开发者

Create Downloadble link of app [closed]

开发者 https://www.devze.com 2023-01-17 10:59 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 10 years ago. 开发者_如何学JAVA

can anyone tell me how could i create a down loadable link for my android app for users. so that i can send them a mail. and as user click on that mail from mobile my app start installation. how could i do this...


Just upload the apk to your website, and email them a link to the apk. When they download it, they will be able to install it, as long as they have enabled third party app installation on their device. You can also provide a market link as detailed in the docs.


Just to enhance fredley's answer, if you run your own web server or have it hosted, you may need to ensure the mime type is set to the correct value, ie, "application/vnd.android.package-archive" as well as ensuring that the suffix is .apk . You can see an way of doing this at www.barcodebeasties.com/downloads (sorry for the blatant advert - but an example often speaks 1000 words).


If you are distributing your app through the Android Market, use a link something like this:

market://search?q=pname:com.yourdomain.yourapp

Clicking on this will only work from an Android device. It will launch the Market app and take the user to your app's listing.

0

精彩评论

暂无评论...
验证码 换一张
取 消