You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
565 B
18 lines
565 B
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.wuliang.lib" >
|
|
|
|
<application>
|
|
|
|
<provider
|
|
android:name="com.wuliang.lib.UtilsFileProvider"
|
|
android:authorities="${applicationId}.utilcode.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/util_code_provider_paths" />
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest>
|
|
|