Develop/React-Native(8)
-
Podfile Signing 오류 해결방법
Xcode 14로 업데이트 이후 Pod마다 개발팀을 설정해달라는 오류가 뜨고있습니다. 해당 오류가 발생하고있는데 Podfile에 다음을 추가해주면됩니다. installer.pods_project.targets.each do |target| if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end end 해당 코드는 각 Pod에 CODE SIGN을 필수로 지정하지 않게 하여 해당 오류를 피할 수 있습니다.
2022.09.22 -
[ReactNative] React Native Typescript 세팅하기
React-Native 에서 타입스크립트로 프로젝트를 만드는 방법을 설명해보겠습니다! npx react-native init yourappname --template react-native-template-typescript 먼저 npx 를 통해서 react-native 의 최신버전을 받아오고, yourappname 자리에 여러분의 프로젝트 이름을 적어주세요! 뒤에 --template 부분에서는 어떤 템플릿을 적용할지 적는 부분인데, react-native-template-typescript를 작성하고 엔터! 😁 Github 주소 : https://github.com/react-native-community/react-native-template-typescript GitHub - react-native..
2021.09.26