AndroidManifest.xml 563 Bytes
Newer Older
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
    package="com.zt.shareextend">

    <application>

        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.zt.shareextend.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_provider_path" />
        </provider>

    </application>
17
</manifest>