react-native-jitsi-meet
react-native-jitsi-meet copied to clipboard
React Native SVG
The side-note at the bottom of README.md should also contain information about how to exclude the react-native-svg from your project. I searched endlessly for a solution when my android app couldn't build because it had react-native-svg multiple times in the project. Excluding the react-native-svg group form implementing fixed it. So the side-note should be this:
If your app already includes react-native-locale-detector or react-native-vector-icons, you must exclude them from the react-native-jitsi-meet project implementation with the following code (even if you're app uses autolinking with RN > 0.60):
implementation(project(':react-native-jitsi-meet')) {
exclude group: 'com.facebook.react',module:'react-native-locale-detector'
exclude group: 'com.facebook.react',module:'react-native-vector-icons'
exclude group: 'com.facebook.react',module:'react-native-svg'
}
@ricardodolnl Hi, friend, I have exclude react-native-svg, but it still report error in Android Studio:
com.facebook.react.bridge.JSApplicationIllegalArgumentException: Error while updating property 'fill' of a view managed by: RNSVGGroup
Do you have any sulotion? thanks.