본문 바로가기

전체 글24

Xcode 빌드 후 아이폰 TestFlight 안보이는 현상 제목 그대로 평소와 같이 Xcode 로 앱을 빌드 한 후, App Store Connect 에서 관리를 눌러 보안 알고리즘 해당 없음을 눌렀다. 근데 아이폰 TestFlight 에 빌드된 앱이 뜨지 않는다..! App Store Connect 는 위 사진처럼 잘 되는데 아이폰에서는 TestFlight 에서는 이렇게 빌드가 안뜬다. (193 빌드가 뜨는 이유는 아래에서 설명하겠다.) 어제까지만 해도 빌드가 되었는데 왜 안되지... 하면서 구글링 해본 결과 딱히 뚜렷한 해결방법은 없고 https://developer.apple.com/forums/thread/65028 해당 주소에서 Info.plist 파일의 ITSAppUsesNonExemptEncryption를 false 로 설정 한 뒤 빌드를 수행하면 .. 2022. 12. 8.
react-native-calendar-strip selectedDate 동작 안할 때 https://github.com/BugiDev/react-native-calendar-strip/issues/249 selectedDate prop change not updating state · Issue #249 · BugiDev/react-native-calendar-strip Is. there any prop for value, as selectedDate is not working when changing its value? github.com 사실 이건 이미 해결된 이슈이다. 이렇게 하면 이제 내가 selectedDate 값을 변경해줄때마다 CalendarStrip의 press된 값이 변경되는데 Date 타입으로 전달하면 리랜더링을 안한다... 왜인지는 모른다. 몽키패치를 진행하려고 했는데.. 2022. 11. 30.
react-native-maps 안드로이드 마커 깜빡거릴때 https://github.com/react-native-maps/react-native-maps/issues/3098 음 간단히 말하면 마커 옵션에 tracksViewChanges={false} 옵션을 넣어주면 된다. 지도에 계속 마커 랜더링을 하는거 같은데, 해당옵션을 false 로 해주면 깜박임이 멈춘다. 2022. 11. 30.
react-native-maps 마커 리랜더링 안될 때 모를땐 역시 이슈를 찾아보는게 훨씬 낫다. my code { shippingRouteStore.scheduleList.map((schedule, index, arr) => { const coordinate: LatLng = generateCoordinate(schedule); return ( /** * @see https://github.com/react-native-maps/react-native-maps/issues/3098 */ /* custome marker */ ); })} https://github.com/react-native-maps/react-native-maps/issues/1800 설명을 간단히 하면 1. 어떤 로직에 의해서 스토어 값이 변경됨 (여기서는 scheduleList 가 변.. 2022. 11. 30.