Skip to content

Commit 24683eb

Browse files
committed
Solve the conflict between FileProvider and other libraries
1 parent d8c79f6 commit 24683eb

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="android.support.v4.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 android.support.v4.content.FileProvider {
4+
}

0 commit comments

Comments
 (0)