Skip to content

Commit

Permalink
manifest detail
Browse files Browse the repository at this point in the history
  • Loading branch information
crazecoder committed Aug 15, 2018
1 parent c8df0f0 commit d3e5098
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ OpenFile.open("/sdcard/example.txt");
```
when Conflict with other plugins about FileProvider, add code below in your /android/app/src/main/AndroidManifest.xml
```
<application>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools
package="xxx.xxx.xxxxx">
<application>
...
<provider
android:name="android.support.v4.content.FileProvider"
Expand All @@ -101,7 +104,8 @@ when Conflict with other plugins about FileProvider, add code below in your /and
android:resource="@xml/filepaths"
tools:replace="android:resource" />
</provider>
</application>
</application>
</manifest>
```
when Android dependency 'com.android.support:appcompat-v7' has different version for the compile error, add code below in your /android/build.gradle
```
Expand Down

0 comments on commit d3e5098

Please sign in to comment.