mobile_tele2med_2024/library/src/main/AndroidManifest.xml
2024-04-09 16:57:26 +03:00

19 lines
547 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.homesoft.encoder">
<application>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.homesoft.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>