<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.installplugin">
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

    <application>
        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
        <provider
            android:name="com.zaihui.installplugin.InstallFileProvider"
            android:authorities="${applicationId}.installFileProvider.install"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_install_paths"/>
        </provider>
    </application>
</manifest>
