You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,32 @@ compileOptions {
55
55
}
56
56
```
57
57
58
+
>If you get **Manifest merger failed with multiple errors, see logs** error while running or syncing gradle then you just have to create a class which extends **android.support.v4.content.FileProvider**.
59
+
60
+
```java
61
+
Example:
62
+
63
+
importandroid.support.v4.content.FileProvider;
64
+
65
+
publicclassMyFileProviderextendsFileProvider
66
+
{
67
+
68
+
}
69
+
70
+
// after you have created this file then you have to register this in your manifest file.
71
+
Example:
72
+
<provider
73
+
android:name="android.support.v4.content.FileProvider"// replace this line with the line below
0 commit comments