Files
react-native-svg/react-native.config.js
Łukasz Kosmaty a1705f13bc chore: Remove legacy version check in react-native.config.js (#2503)
## Description

Removes legacy version check from `react-native.config.js`. 

## Changes

The community CLI is no longer a dependency for React Native, meaning it
may not be installed in every project. For example, projects that use
Expo won't include the `@react-native-community/cli-*` packages.
Consequently, this check will fail, leading to issues with autolinking
components.

This version check can be removed safely, as the 9th version of the CLI
was released two years ago.

## Tests

This change was tested using `expo` project on react native `0.76`.

Co-authored-by: Jakub Grzywacz <jakub.grzywacz@swmansion.com>
2024-10-25 11:28:22 +02:00

41 lines
1.5 KiB
JavaScript

module.exports = {
dependency: {
platforms: {
android: {
componentDescriptors: [
'RNSVGCircleComponentDescriptor',
'RNSVGClipPathComponentDescriptor',
'RNSVGDefsComponentDescriptor',
'RNSVGFeBlendComponentDescriptor',
'RNSVGFeColorMatrixComponentDescriptor',
'RNSVGFeCompositeComponentDescriptor',
'RNSVGFeFloodComponentDescriptor',
'RNSVGFeGaussianBlurComponentDescriptor',
'RNSVGFeMergeComponentDescriptor',
'RNSVGFeOffsetComponentDescriptor',
'RNSVGFilterComponentDescriptor',
'RNSVGEllipseComponentDescriptor',
'RNSVGForeignObjectComponentDescriptor',
'RNSVGGroupComponentDescriptor',
'RNSVGImageComponentDescriptor',
'RNSVGLinearGradientComponentDescriptor',
'RNSVGLineComponentDescriptor',
'RNSVGMarkerComponentDescriptor',
'RNSVGMaskComponentDescriptor',
'RNSVGPathComponentDescriptor',
'RNSVGPatternComponentDescriptor',
'RNSVGRadialGradientComponentDescriptor',
'RNSVGRectComponentDescriptor',
'RNSVGSvgViewAndroidComponentDescriptor',
'RNSVGSymbolComponentDescriptor',
'RNSVGTextComponentDescriptor',
'RNSVGTextPathComponentDescriptor',
'RNSVGTSpanComponentDescriptor',
'RNSVGUseComponentDescriptor',
],
cmakeListsPath: '../android/src/main/jni/CMakeLists.txt',
},
},
},
};