No component found for view with name "ARTShape"
There is no ART.xcodeproject it RN> 0.61. In /ios/Podfile add
pod 'React-ART', :path => '../node_modules/react-native/Libraries/ART'
I drag and dropped node_modules/react-native/Libraries/ART/ART.xcodeproj somewhere to my Xcode project. After that I was able to add libART.a under Build Phases -> Link Binary With Libraries
source: https://github.com/bgryszko/react-native-circular-progress/issues/23
You need to link the ART Library to your iOS project.
Refer to the React Native document,
- Find the ART Xcode Project in the node_module/react-native
- Drag the ART Project into your project_folder/Libraries
- Go the Build Phase tab of YOUR PROJECT, add libART.a into Link Binary into Libraries.
Hope it helps. :)