Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request react-native-image-picker#571 from rigdern/rigdern…
Browse files Browse the repository at this point in the history
…/fileprovider-conflict

Avoid conflicting with other FileProviders
  • Loading branch information
haitaoli authored Feb 21, 2018
2 parents 003b8f8 + 48e8683 commit 60169dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ yarn.lock

## Android iml
*.iml

.vscode/
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
>
<application>
<provider
android:name="android.support.v4.content.FileProvider"
android:name="com.imagepicker.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
Expand Down
4 changes: 4 additions & 0 deletions android/src/main/java/com/imagepicker/FileProvider.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.imagepicker;

public class FileProvider extends android.support.v4.content.FileProvider {
}

0 comments on commit 60169dc

Please sign in to comment.