Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.3
-
None
Description
this is probably linked to fixed QTBUG-130813
i have moved from 6.7.3 to 6.8.3 (because i finaly fixed QTBUG-135978), and all changes are:
in 6.7.3 in main.cpp i had:
#include <QtPlugin> Q_IMPORT_PLUGIN(QIosOptionalPlugin_NSPhotoLibrary);
while for 6.8.3 i have to use this in my cmake instead of above main.cpp code:
qt_import_plugins(${TARGET_NAME} INCLUDE Qt6::QIosOptionalPlugin_NSPhotoLibraryPlugin)
- info why is here: https://bugreports.qt.io/browse/QTBUG-132412
also because of FFmpeg, now since 6.8.0 i have to also add to cmake:
qt_add_ios_ffmpeg_libraries(${TARGET_NAME})
and one last change (but this is affecting both 6.7.3 and 6.8.3) i have to stop using:
target_link_libraries(${TARGET_NAME} PRIVATE "${QT_HOST_PATH}/../ios/plugins/platforms/darwin/libqiosnsphotolibrarysupport.a")
- because of QTBUG-135978
and the result when Validating app for apploading to apple store is:
which before mentioned changes want an issue (not even this warning, which is also very important because now i dont have debug symvols for crashlitics stacktrace linked to these missing frameworks DWARFs)
Attachments
Issue Links
- resulted from
-
QTBUG-130813 qt_add_ios_ffmpeg_libraries does not generate SwiftSupport folder so AppStore rejects!
-
- Closed
-