Reputation: 43
I have already published android app on Google Play. It is desired to distribute the application even offline as .apk file directly. My app is completely free and we wish it should spread to as many people.
I am not sure what could be advantages and disadvantages of providing .apk file?
Questions are :
Upvotes: 5
Views: 5690
Reputation: 29436
Also, there are numerous third party app markets other than Play Store. You can upload your app there too (auto update is not available with all of them).
Upvotes: 2
Reputation: 6597
To answer your questions:
.apk
in Android. When you go to open the completed download, it will offer it up for install (see caveats below).apk
up for direct download outside of Google Play you get no "update checking" -- you have to do that yourself. Not entirely sure what happens if the .apk
is available in the play store and via direct download. It is easier to talk about the disadvantages for the approach of distributing the .apk
yourself.
.apk
from your site, open it in 7zip (or similar) and have at the underlying class files. Whether or not this is a concern is really for you to decide.The most important reason
Your users will have to check "Allow installation of packages from unknown sources". Your average person might not know how to do this, and may be hesitant to do so. So, it may limit your ability to gain a a wide market share.
So, in summary, ask yourself if not being in Google Play/Android Market is really worth the hassle that comes for both you and your users.
** Not sure if this is true with Chrome on Android -- it is certainly true with the older default browser
Upvotes: 3
Reputation: 2096
Upvotes: 1