summaryrefslogtreecommitdiffstats
path: root/examples/sensors
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2023-06-01 20:05:49 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2023-06-01 21:12:11 +0300
commit3b8d720b535f5770503b0c87149c91580cacf044 (patch)
tree43941708da889c5eaa9739ad1a5b8257b87655c2 /examples/sensors
parent50ac8078cf04e7c7ad8bbebbda01cbd1aa206db6 (diff)
Android: remove fileprovider section from sensorsshowcase example
The manifest file had a mention of a FileProvider but didn't include the xml definiton for it, and this feature is introduced starting in Qt 6.6 (as of this time), so it needs to be removed. Fixes: QTBUG-113651 Pick-to: 6.5 Change-Id: Idc59416206f9c2082e2a9e21e5ed26675d904495 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'examples/sensors')
-rw-r--r--examples/sensors/sensorsshowcase/android/AndroidManifest.xml10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/sensors/sensorsshowcase/android/AndroidManifest.xml b/examples/sensors/sensorsshowcase/android/AndroidManifest.xml
index 7e2f9a86..4d1a9269 100644
--- a/examples/sensors/sensorsshowcase/android/AndroidManifest.xml
+++ b/examples/sensors/sensorsshowcase/android/AndroidManifest.xml
@@ -52,15 +52,5 @@
android:name="android.app.background_running"
android:value="false" />
</activity>
-
- <provider
- android:name="androidx.core.content.FileProvider"
- android:authorities="${applicationId}.qtprovider"
- android:exported="false"
- android:grantUriPermissions="true">
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/qtprovider_paths" />
- </provider>
</application>
</manifest>