video player add to web

This commit is contained in:
Eudes Inácio
2023-11-09 09:51:57 +01:00
parent deade1daa2
commit d864c70b9f
3 changed files with 19 additions and 10 deletions
+11 -1
View File
@@ -30,8 +30,18 @@
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<receiver
android:name=".SharedTextReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</receiver>
<provider android:authorities="${applicationId}.fileprovider" android:exported="false"
<provider android:authorities="${applicationId}.fileprovider" android:exported="false"
android:grantUriPermissions="true" android:name="androidx.core.content.FileProvider">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />