EasyImage icon indicating copy to clipboard operation
EasyImage copied to clipboard

Add way to use own FileProvider

Open maximzhemerenko opened this issue 6 years ago • 1 comments

Please add ability to setup file provider authorities from the application.

maximzhemerenko avatar Sep 17 '18 12:09 maximzhemerenko

Hi, try to add this to manifest.

<provider
          android:name="android.support.v4.content.FileProvider"
          android:authorities="${applicationId}.easyphotopicker.fileprovider"
          android:exported="false"
          android:grantUriPermissions="true"
          tools:replace="android:authorities">
          <meta-data
              android:name="android.support.FILE_PROVIDER_PATHS"
              android:resource="@xml/file_paths"
              tools:replace="android:resource" />
      </provider>

Mentix avatar Sep 27 '18 15:09 Mentix