Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.2, 6.10
-
Pixel 4 Emulator, API Level 31
-
-
4a54c32e6 (dev), 7ca68d0e2 (dev), 2054b0021 (6.9), 6e0d7c402 (6.9), 5debb0508 (6.8), d5a2fbc88 (6.8)
-
2025wk08s1QtforAndroid, 2025wk10s1QtforAndroid
Description
Code
#include <QDesktopServices> #include <QFile> #include <QGuiApplication> #include <QImage> #include <QStandardPaths> #include <QUrl> int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QFile imgFile(QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation) + "/example.png"); auto imgUrl = QUrl::fromLocalFile(imgFile.fileName()); QImage img(100, 100, QImage::Format_RGB32); img.fill(Qt::green); if (imgFile.open(QIODevice::WriteOnly)) { qDebug() << "Saving image to" << imgUrl; qDebug() << img.save(&imgFile); imgFile.close(); } else qWarning() << "Failed to open example.png for writing!"; qDebug() << "Attempting to launch external viewer..."; QDesktopServices::openUrl(imgUrl); return app.exec(); }
Outcomes
D/libFileProviderTest_x86_64.so: Saving image to QUrl("file:///storage/emulated/0/Android/data/org.qtproject.example.FileProviderTest/files/Documents/example.png") D/libFileProviderTest_x86_64.so: true D/libFileProviderTest_x86_64.so: Attempting to launch external viewer... W/libFileProviderTest_x86_64.so: java.lang.IllegalArgumentException: Failed to find configured root that contains /storage/emulated/0/Android/data/org.qtproject.example.FileProviderTest/files/Documents/example.png W/libFileProviderTest_x86_64.so: at androidx.core.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:867) W/libFileProviderTest_x86_64.so: at androidx.core.content.FileProvider.getUriForFile(FileProvider.java:467) W/libFileProviderTest_x86_64.so: at org.qtproject.qt.android.QtNative.startQtApplication(Native Method) W/libFileProviderTest_x86_64.so: at org.qtproject.qt.android.QtNative$$ExternalSyntheticLambda4.run(D8$$SyntheticClass:0) W/libFileProviderTest_x86_64.so: at org.qtproject.qt.android.QtThread$1.run(QtThread.java:25) W/libFileProviderTest_x86_64.so: at java.lang.Thread.run(Thread.java:920) W/libFileProviderTest_x86_64.so: D/ProfileInstaller: Installing profile for org.qtproject.example.FileProviderTest
Notes
I tried modifying "qtprovider_paths.xml" to change path="/" to path="Documents/" but the outcome was the same.
Attachments
Issue Links
- resulted from
-
QTBUG-85238 Use FileProvider for OpenUrl() for Android
-
- Closed
-
For Gerrit Dashboard: QTBUG-133702 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
630327,3 | Android: Update qtprovider_paths.xml file | dev | qt/qtbase | Status: MERGED | +2 | 0 |
630380,3 | Android: Fix for opening Url with authority | dev | qt/qtbase | Status: MERGED | +2 | 0 |
631563,2 | Android: Update qtprovider_paths.xml file | 6.9 | qt/qtbase | Status: MERGED | +2 | 0 |
631585,2 | Android: Fix for opening Url with authority | 6.9 | qt/qtbase | Status: MERGED | +2 | 0 |
632056,1 | Android: Update qtprovider_paths.xml file | 6.9.0 | qt/qtbase | Status: ABANDONED | +2 | 0 |
632057,2 | Android: Update qtprovider_paths.xml file | 6.8 | qt/qtbase | Status: MERGED | +2 | 0 |
632058,1 | Android: Fix for opening Url with authority | 6.9.0 | qt/qtbase | Status: ABANDONED | +2 | 0 |
632059,2 | Android: Fix for opening Url with authority | 6.8 | qt/qtbase | Status: MERGED | +2 | 0 |
632063,1 | Android: Update qtprovider_paths.xml file | 6.8.3 | qt/qtbase | Status: ABANDONED | +2 | 0 |
632064,1 | Android: Fix for opening Url with authority | 6.8.3 | qt/qtbase | Status: ABANDONED | +2 | 0 |