We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b1a91c commit 83c3c2bCopy full SHA for 83c3c2b
1 file changed
app/src/main/AndroidManifest.xml
@@ -37,6 +37,15 @@
37
<category android:name="android.intent.category.LAUNCHER" />
38
</intent-filter>
39
</activity>
40
+ <provider
41
+ android:name="androidx.core.content.FileProvider"
42
+ android:authorities="${applicationId}.fileprovider"
43
+ android:exported="false"
44
+ android:grantUriPermissions="true">
45
+ <meta-data
46
+ android:name="android.support.FILE_PROVIDER_PATHS"
47
+ android:resource="@xml/file_paths" />
48
+ </provider>
49
50
<!-- Add the accessibility service configuration -->
51
<service
0 commit comments