React-Native/Error
-
[React-Native][iOS][Error] Unrecognized font family ErrorReact-Native/Error 2022. 6. 15. 21:08
빌드했는데 iOS 시뮬레이터에서 위와 같은 에러가 발생한 경우는 info.plist 파일에 사용할 폰트나 아이콘을 등록하지 않을 경우 발생한 Error입니다. ios/[프로젝트 명]/Info.plist UIAppFonts // 사용 할 폰트나 아이콘 이름을 추가 AntDesign.ttf Entypo.ttf EvilIcons.ttf Feather.ttf FontAwesome.ttf FontAwesome5_Brands.ttf FontAwesome5_Regular.ttf FontAwesome5_Solid.ttf Foundation.ttf Ionicons.ttf MaterialIcons.ttf MaterialCommunityIcons.ttf SimpleLineIcons.ttf Octicons.ttf Zocial..
-
[React-Native] [Android][Error] > Task :app:checkDebugAarMetadata FAILED 에러React-Native/Error 2022. 6. 12. 22:48
android 빌드할 때 발생한 오류 > Task :app:checkDebugAarMetadata FAILED 해결법 compileSdkVersion를 바뀐 뒤에 빌드를 하니까 에러가 없어졌습니다. // android/build.gradle buildscript { ext { compileSdkVersion = 31 .... 참고 https://github.com/OneSignal/react-native-onesignal/issues/1318#issuecomment-969103301 Execution failed for task ':app:checkDebugAarMetadata'. · Issue #1318 · OneSignal/react-native-onesignal Description: I creat..