Qt 6.11 is out! See what's new in the release
blog
QFileDialog::getOpenFileContent on Android
-
I'm trying to use QFileDialog::getOpenFileContent() on Android.
The file picker intent opens correctly, but the callback is never invoked, so I cannot obtain the selected file content.
I have already requested MANAGE_EXTERNAL_STORAGE. Using either QFile with a file URL or my own file picker implementation works correctly, so file access itself does not seem to be the issue.
Is QFileDialog::getOpenFileContent() expected to work on Android? If so, are there any additional requirements or configurations that I might have missed? I couldn't find any related bug reports in the Qt bug tracker.