We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791f9e3 commit c366b61Copy full SHA for c366b61
1 file changed
app/src/main/AndroidManifest.xml
@@ -64,5 +64,16 @@
64
android:name="android.accessibilityservice"
65
android:resource="@xml/accessibility_service_config" />
66
</service>
67
+
68
+ <!-- FileProvider configuration for sharing screenshots -->
69
+ <provider
70
+ android:name="androidx.core.content.FileProvider"
71
+ android:authorities="${applicationId}.fileprovider"
72
+ android:exported="false"
73
+ android:grantUriPermissions="true">
74
+ <meta-data
75
+ android:name="android.support.FILE_PROVIDER_PATHS"
76
+ android:resource="@xml/file_paths" />
77
+ </provider>
78
</application>
79
</manifest>
0 commit comments