Skip to content

Commit

Permalink
Merge pull request #301 from 1uokun/master
Browse files Browse the repository at this point in the history
Solve the conflict between FileProvider and other libraries
  • Loading branch information
Traviskn authored Jul 14, 2019
2 parents fb9e007 + aee85fb commit 9425ccb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<application android:label="@string/app_name">

<provider
android:name="androidx.core.content.FileProvider"
android:name="com.RNFetchBlob.Utils.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
Expand All @@ -34,4 +34,4 @@
</provider>
</application>

</manifest>
</manifest>
4 changes: 4 additions & 0 deletions android/src/main/java/com/RNFetchBlob/Utils/FileProvider.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.RNFetchBlob.Utils;

public class FileProvider extends androidx.core.content.FileProvider {
}

0 comments on commit 9425ccb

Please sign in to comment.