AndroidManifest.xml 610 B

12345678910111213141516
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.donkingliang.imageselector">
  3. <application>
  4. <provider
  5. android:name="com.donkingliang.imageselector.provider.ImageSelectorProvider"
  6. android:authorities="${applicationId}.imageSelectorProvider"
  7. android:exported="false"
  8. android:grantUriPermissions="true">
  9. <meta-data
  10. android:name="android.support.FILE_PROVIDER_PATHS"
  11. android:resource="@xml/image_selector_file_paths" />
  12. </provider>
  13. </application>
  14. </manifest>