Does App Store accept Qt app linked with QT Library LGPLv3

前端 未结 2 1932
半阙折子戏
半阙折子戏 2021-01-30 02:52

There is any way to submit to the App Store an Qt Quick Controls application

under LGPLv3 license without violating App Store rules?

What i want to do is to depl

2条回答
  •  悲哀的现实
    2021-01-30 03:11

    Yes, it's possible.

    You can use this Qt app template:

    https://marketplace.qt.io/products/qt-lgpl-app-template

    On IOS it's impossible to relink the App, so it's LGPL V3.0 incompatible (user can't replace Qt libraries)

    But this template generates a redistributable .zip Qt project on every rebuild.

    Their entire private project is distributed in a compiled .a library, so a user can open project in Qt Creator, rebuild their application and load it on their ipad / iphone, and your source code stays protected

    Note: If you are using the qtquick compiler, you must relink it to the same version of Qt.

    This .zip file can be uploaded to your own URL or you can add it to your software resources.

    You can use the same template in an Android app, a static Windows app, etc.

    It's the same as @psyched says, but 100% automatically.

提交回复
热议问题