2

I developed an iOS application as a student and I am currently distributing it for free in the app store. I have received a few enquires about adding features to the app including one person who would like the app to be open source so they can add features themselves.

What concerns should I have if I open source my iOS application?

Which open source license should I use?

Kara
  • 121
  • 8
  • Any prohibition of Exclusive License (like GPL) in Apple's App Store? – linquize Oct 25 '12 at 06:38
  • 5
    Apple [doesn't allow GPL software](http://programmers.stackexchange.com/questions/167797/could-apple-and-microsoft-allow-the-gplv3-on-their-locked-down-devices) in their App Store (as does Microsoft, by the way). Other Open Source licenses that don't require free redistribution (i.e. most others) don't seem to be a problem, 'though. – Joachim Sauer Oct 25 '12 at 06:43

1 Answers1

2

You can use any open-source license you want, with the exception of the GPL, which is incompatible with the Terms of Service of the Apple Store.

See the the regulations of the Apple Store in the Wikipedia.

Gallaecio
  • 491
  • 2
  • 4
  • 1
    Presumably, it's not just the GPL that is disallowed, but any copyleft license which requires that source code be distributed along with object code. The GPL is far and away the most popular such license, but there are a few others. – Tom Anderson Oct 25 '12 at 17:47