Skip to content

Commit 9425ccb

Browse files
authored
Merge pull request #301 from 1uokun/master
Solve the conflict between FileProvider and other libraries
2 parents fb9e007 + aee85fb commit 9425ccb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<application android:label="@string/app_name">
2525

2626
<provider
27-
android:name="androidx.core.content.FileProvider"
27+
android:name="com.RNFetchBlob.Utils.FileProvider"
2828
android:authorities="${applicationId}.provider"
2929
android:exported="false"
3030
android:grantUriPermissions="true">
@@ -34,4 +34,4 @@
3434
</provider>
3535
</application>
3636

37-
</manifest>
37+
</manifest>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.RNFetchBlob.Utils;
2+
3+
public class FileProvider extends androidx.core.content.FileProvider {
4+
}

0 commit comments

Comments
 (0)