apple Oauth 를 하는 과정에서 com.apple.AuthenticationServices.Authorization Error Code 1000 란 에러가 발생했다.
xcode 에서, sign with apple 추가해주면 해결
apple Oauth 를 하는 과정에서 com.apple.AuthenticationServices.Authorization Error Code 1000 란 에러가 발생했다.
xcode 에서, sign with apple 추가해주면 해결
Podfile 에
추가로 해결
edit scheme -> pre-action
# Type a script or drag a script file from your workspace to insert its path.
cp "${PROJECT_DIR}/../.env.development" "${PROJECT_DIR}/../.env"
echo ".env.development" > /tmp/envfile
밑에
touch "${PROJECT_DIR}/../node_modules/react-native-config/ios/ReactNativeConfig/BuildDotenvConfig.rb"
추가
최종
# Type a script or drag a script file from your workspace to insert its path.
cp "${PROJECT_DIR}/../.env.development" "${PROJECT_DIR}/../.env"
echo ".env.development" > /tmp/envfile
touch "${PROJECT_DIR}/../node_modules/react-native-config/ios/ReactNativeConfig/BuildDotenvConfig.rb"
상품관련된 부분을 api를 통해 html 태그를 통해서 받게되었다.
핸드폰 가로비율에 100%로 맞추고, 웹뷰안에서 네비게이팅을 하지않도록 작성했다
화면 100% 맞추는 작업은 html을
해당함수로 직접 변경해줘서 해결했다.
rm -rf ios/Pods 로 pod 관련 부분을 지우고 다시 pod-install을 진행했는데
해당 에러가 발생했다.
에러로그는 xcrun: error: SDK "iphoneos" cannot be located.
로
sudo xcode-select --switch /Applications/Xcode.app
를 사용하여 xcode 위치 설정을 잡아주면 해결
[ React Native ] react-native-config ios 환경 분리시, clean build 를 해야만하는 문제 (0) | 2023.08.11 |
---|---|
[ React Native ] react-native-webview (0) | 2023.08.11 |
[ React Native ] react native release mode 실행 (0) | 2023.08.09 |
[ React Native ] redux toolkit 으로 logger 이용하기 (0) | 2023.08.09 |
[ React Native ] Warning : Watchman `watch-project` returned a warning :... (0) | 2023.08.02 |
react-native run-android --mode release #android
react-native run-ios --configuration Release #ios
[ React Native ] react-native-webview (0) | 2023.08.11 |
---|---|
[ React Native ] pod-install xcrun: error: SDK "iphoneos" cannot be located. 에러 (0) | 2023.08.10 |
[ React Native ] redux toolkit 으로 logger 이용하기 (0) | 2023.08.09 |
[ React Native ] Warning : Watchman `watch-project` returned a warning :... (0) | 2023.08.02 |
[ React Native ] ErrorBoundary 예제 (0) | 2023.08.02 |
redux 툴킷을 상요하지않다가 이번에 사용을 하면서
기존
const store = createStore(rootReducer, applyMiddleware(myLogger, logger));
나
const store = createStore(reducer, composeWithDevTools(
applyMiddleware(...middleware),
// other store enhancers if any
));
로 사용하던 로거를
형태로 바꾸어줬다
[ React Native ] pod-install xcrun: error: SDK "iphoneos" cannot be located. 에러 (0) | 2023.08.10 |
---|---|
[ React Native ] react native release mode 실행 (0) | 2023.08.09 |
[ React Native ] Warning : Watchman `watch-project` returned a warning :... (0) | 2023.08.02 |
[ React Native ] ErrorBoundary 예제 (0) | 2023.08.02 |
[ React Native ] Swipe 할때, Pressable / TouchableOpacity 안되는 컴포넌트 (0) | 2023.07.25 |
watchman watch-del '/Users/유저이름/프로젝트이름' ; watchman watch-project '/Users/유저이름/프로젝트이름'
으로 해결
스와이프를 할때도, pressable / touchableopacity 가 event가 먹기에 Pressable을 커스텀했다.
Pressable 말고 TouchableOpacity로도 사용이 가능한데, RN공홈에서 Pressable 을 권장하니 참고