wonsikin / react-native-barcode-builder

Component for generating barcode in react native app
Other
175 stars 116 forks source link

Error: NoViewManager defined for Class RNSVGrect #1

Closed fawwaz closed 7 years ago

fawwaz commented 7 years ago

Helo @wonsikin , i got the NoViewManager defined for Class RNSVGrect exception, do you know how to handle that ?

Edit: I've read this one : https://github.com/react-native-community/react-native-svg/issues/148, and I can guarantee that I've linked the react-native-svg dependency correctly. However, it still does'nt work. Do you have any advice ?

wonsikin commented 7 years ago

@fawwaz Which platform does your app run? Android or iOS? If android, just try the command in the following:

cd /path/to/your/react-native-project/
cd android
./gradlew clean
cd .. && react-native run-android
fawwaz commented 7 years ago

Android, well , finally I've found the solution. In my case, I just need to re-run react-native run-android again. It seems that react-native-svg add some java dependency on MainApplication.java. I forget to "update" the java dependency that installed in my device so once I run react-native run-android gradle will "download" com.horcrux.svg.RNSvgPackage as said in https://github.com/react-native-community/react-native-svg/issues/135