Domanda

So, you can build Qt apps and deploy them to android.

Taking a look at this post, I was wondering if making a game using Qt would be fine with LGPL legal terms given the following facts:

  • The app would be at GooglePlay so, using third party libraries is a concern
  • Source code for the app would be public
  • Possible in-game purchasing. I don't really know if this is ok with making the code public, since I ignore what info is needed in the app for achieving this.

Would it be ok to use Qt LGPL license with all that? does any point fails at using LGPL? if so, which one?

È stato utile?

Soluzione

After some research, quoting from here:

As Qt for Android uses the LGPL version of Qt, and it's perfectly possible (and also recommended and supported) to dynamically link in the Qt libraries when creating an app - there are no problems for app developers using Qt for Android. The app developers can develop closed source code and publish the app - no worries.

Only if you statically link with the Qt libs could there be a problem with closed source apps.

Altri suggerimenti

The following libraries: Qt Location, Qt 3D, Qt Canvas 3D, Qt WebView, Qt Quick Controls and parts of Qt WebEngine are currently only available through LGPLv3, creating some serious responsibilities for the developer. As long as you don't use these and meet up with the rest of the minor requirements it's ok.

"With LGPLv3 it is also explicitly stated that the user needs to be able to run the re-linked binary on it’s intended target device. It is your obligation to provide the user with all necessary tools to enable this process. For embedded devices, this includes making the full toolchain used to compile the library available to users. For parts licensed under LGPLv3 you are obliged to provide full instructions on how to install the modified library on the target device (this is not clearly stated with LGPLv2.1, although running the application against the modified version of the library clearly is the stated intention of the license)." - FAQ

Autorizzato sotto: CC-BY-SA insieme a attribuzione
scroll top