19 lines
669 B
XML
19 lines
669 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.nfet.flutter.printing" >
|
|
|
|
<uses-sdk android:minSdkVersion="21" />
|
|
|
|
<application>
|
|
<provider
|
|
android:name="net.nfet.flutter.printing.PrintFileProvider"
|
|
android:authorities="${applicationId}.flutter.printing"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true" >
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/flutter_printing_file_paths" />
|
|
</provider>
|
|
</application>
|
|
|
|
</manifest> |