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
getting error Invariant Violation: requireNativeComponent: "RNSVGSvgViewAndroid" was not found in the UIManager while using react-native-qrcode-svg package in react native expo.
#193
Open
abrarulhaq7 opened this issue
Dec 12, 2023
· 2 comments
Hye community! I am getting error "error Invariant Violation: requireNativeComponent: "RNSVGSvgViewAndroid" was not found in the UIManager". in react native expo.
it was working fine few days ago. But from last three days its not working.
package version is: "react-native-qrcode-svg": "^6.2.0",
react native version: "react-native": "0.71.8",
react version: "react": "18.2.0",
expo version: "expo": "~48.0.18",
recently i installed "expo-notifications": "~0.18.1", package too. but i don't think so this package shouldn't made any issue for react-native-qrcode-svg package. i am willing to uninstall expo-notifications package.
Kindly help me resolving this issue.
import React from "react";
import { View, Text, StyleSheet } from "react-native";
import QRCode from "react-native-qrcode-svg";
Hye community! I am getting error "error Invariant Violation: requireNativeComponent: "RNSVGSvgViewAndroid" was not found in the UIManager". in react native expo.
it was working fine few days ago. But from last three days its not working.
package version is: "react-native-qrcode-svg": "^6.2.0",
react native version: "react-native": "0.71.8",
react version: "react": "18.2.0",
expo version: "expo": "~48.0.18",
recently i installed "expo-notifications": "~0.18.1", package too. but i don't think so this package shouldn't made any issue for react-native-qrcode-svg package. i am willing to uninstall expo-notifications package.
Kindly help me resolving this issue.
import React from "react";
import { View, Text, StyleSheet } from "react-native";
import QRCode from "react-native-qrcode-svg";
export default function ProfileQR({ route }) {
const { userUid } = route.params;
const data = { userUid: userUid };
const jsonData = JSON.stringify(data);
return (
Scan to add user
);
}
The text was updated successfully, but these errors were encountered: