12

The question that bothers me is whether it is possible/feasible/reasonable to expect for an open-source app to sell well on the mobile market?

Should I believe that my users will use my app, rather than build the checked-out version, and, more important, how can I deal with the competition if I make my app available under an OSS license?

So far the only link on the subject I've found is http://blog.zachwaugh.com/post/17554643060/selling-open-source-apps however it deals with a Mac OS X app.

I should mention my question does not focus on iOS, Android or another OS, it's about mobile applications in general.

EDIT: The very reasonable question of whether my users are programmers has been asked.
I do not expect most of my users to be even remotely familiar with programming.

K.Steff
  • 4,475
  • 2
  • 31
  • 28
  • 3
    Are your users programmers? – chrisaycock Apr 29 '12 at 02:11
  • Probably not, it's an entertainment app. I will edit the question to reflect this. – K.Steff Apr 29 '12 at 11:32
  • 1
    have you asked other programmers who opensourced payed mobile apps? Example: https://play.google.com/store/apps/details?id=net.osmand.plus (payed) and https://play.google.com/store/apps/details?id=net.osmand (free, reduced-feature) are open source and available at github https://github.com/osmandapp/Osmand – k3b Feb 01 '16 at 16:28
  • Commenting my own question, as I have (hopefully) gained some insight since asking: 1) Non-developers probably won't bother with building unless your price is unreasonable. 2) Developers time is precious and those who just want to use will probably simply pay for the convenience and support. 3) The only practical issue is with competition, mostly illicit at that - a respectable company would much rather buy you out or do a clean reverse-engineer than attempt to 'cheat' you – K.Steff Oct 06 '16 at 14:32

4 Answers4

15

For starters, the vast majority of apps, of the million out there, do not sell well, whether open or closed source. So don't expect any app to sell well unless it is a stand-out app and well marketed.

For iOS apps, someone would need to have paid Apple $99/annum for an iOS Developer program enrollment, plus have a Mac, in order to be able to download your open source, build the app, and load it on their device, without buying your app. Not many end users would do this, even if they had the expertise.

However, there is little or nothing to prevent some other developers from doing this, even submitting it to an app store under their own name, perhaps undercutting your price, or adding advertisements to a free app.

There are more and more developers doing the latter. Some reportedly even using content that is copyrighted and not open source. So competition is almost guaranteed if your app gains any visibility. Your advantage over the copycats, if any, will be brand name recognition from marketing, PR, or fame, if you have any, as many of the app stores do attempt to protect registered trademarks.

ADDED:

If you distribute your open source under the GPL v3 license, there may be some legal opinion that using code so licensed is incompatible with Apple's iOS App store DRM. But you, as the 100% copyright holder, could submit your own app to the iOS App store yourself, since the license doesn't apply to the owner. However, you may be able to consult an attorney about whether you would have grounds to sue anyone else who took your code under GPL v3 license, and tried to do likewise. This might cost you money to enforce though. But IANAL, so consult a lawyer if you want to think about using this strategy.

ADDED later:

As of Xcode 7.x, one no longer needs to pay Apple a $99/annum developer enrollment fee to install apps from a Mac to their own connected iOS devices. Only a valid Apple Developer ID and knowledge in how to use Xcode is needed.

hotpaw2
  • 7,938
  • 4
  • 21
  • 47
4

Your mobile application being open source will not have much of an impact on the sales of the app if it is on the market.

There is a lot of work involved in doing a checkout (you need the relevant SCM installed) and getting the appropriate SDK set up (the relevant license acquired if it is iOS or Windows). That is provided that your target users are that knowledgeable to know that this is what they need to do to get it for free.

It is actually a positive upto a certain level. Providing source may actually be a bonus and would tilt many a advanced user to your side. These users can extend or build apps alongside your application that uses your application features like Activities in android.

Making the source available is not by itself going to attract contributors. The app needs to attract sufficient attraction before that happens.

If you're concerned about competition, then it's best to not open source at all. It is very hard to establish that your featuers were copied and time consuming to get that issue settled.

rsman
  • 1,319
  • 11
  • 21
1

Is the community going to contribute to the source code? If not, there's no need to make it publicly available.

You could give paying customers the source as an added bonus so they can modify the app to fit their needs.

Write your own license that suites your needs like a glove. Let your needs and wants guide the license, not the other way around.

Lord Tydus
  • 1,429
  • 1
  • 10
  • 12
  • I think this isn't always an option, since a developper may use copyleft-licensed libraries in his code – K.Steff Apr 29 '12 at 17:46
1

Often we don't pay/donate because we are lazy and even want to but postpone indefinitely

An example if you don't mind. It's not about mobile, but the concept is interesting. It's ssh server for Windows, called KpyM. The app is open-sourced and the download version contained 5-seconds delay for any client connection if not registered. This practice is usual for closed sharewares, but this was the first time I met it in OSS. And finally I paid. Because

  • I could live with this reminder, but it reminded me that the job is done and it's better for it to be rewarded. The more I feel the program worked as expected, the more this delay was about wish to pay (because if it's irritation, I can always modify the sources and recompile)
  • I could recompile without the delay, but I had strong urge not to do. Not mentioning recompiling it and upload this version somewhere for ethical reasons. Hacking closed binaries is illegal, but sometimes has reasoning (for example, solving a complex task), but changing the source code of an OSS program in similar cases won't even get you a badge of a smart guy :)
Maksee
  • 2,653
  • 1
  • 16
  • 12