[BUG]: expo에서 ios development build가 되지 않습니다
kdby-io opened this issue · 1 comments
kdby-io commented
Is there an existing issue for this?
- I have searched the existing issues
Version of @mj-studio/react-native-naver-map
2.2.0
Version of react-native
0.74.5
What os are you seeing the problem on?
iOS
What device types are you seeing the problem on?
Simulator
What architecture types of react native are you seeing the problem on?
New Architecture(Fabric)
Version of device(android API, iOS OS version, etc...)
expo: 51.0.28
Expo App
- I am using Expo
What happened?
안녕하세요. ios simulator development build에 실패하고 있습니다.
리드미 꼼꼼히 읽어봤는데 제가 무엇을 놓쳐서 실패했는지 잘 모르겠어요.
샘플 레포에서 네이버맵 client_id를 설정한 후에 npm run build:development:ios
로 빌드가 실패하는 것을 볼 수 있습니다.
Relevant a package.json.
{
"name": "react-native-naver-map-build-fail",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"build:development:ios": "eas build --local --profile development-simulator --platform ios"
},
"dependencies": {
"@mj-studio/react-native-naver-map": "^2.2.0",
"@react-navigation/native": "^6.0.2",
"expo": "~51.0.28",
"expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.28",
"expo-linking": "~6.3.1",
"expo-location": "~17.0.1",
"expo-router": "~3.5.23",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-web-browser": "~13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-screens": "3.31.1",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"eas-cli": "^12.5.1",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"private": true
}
Relevant log output
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » mj-studio-react-native-naver-map-dummy.m
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapViewImpl.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapView.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapUtil.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapPolyline.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapPolygon.mm
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:21:20)
19 | }
20 |
> 21 | - (std::shared_ptr<RNCNaverMapPolygonEventEmitter const>)emitter {
| ^ use of undeclared identifier 'RNCNaverMapPolygonEventEmitter'
22 | if (!_eventEmitter)
23 | return nullptr;
24 | return std::static_pointer_cast<RNCNaverMapPolygonEventEmitter const>(_eventEmitter);
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:52:22)
50 | }
51 |
> 52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
| ^ use of undeclared identifier 'Props'
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
55 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:52:59)
50 | }
51 |
> 52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
| ^ use of undeclared identifier 'Props'
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
55 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:134:4)
132 | }
133 |
> 134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
| ^ expected a type
135 | return concreteComponentDescriptorProvider<RNCNaverMapPolygonComponentDescriptor>();
136 | }
137 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:33:21)
31 | _inner.touchHandler = [self](NMFOverlay* overlay) -> BOOL {
32 | if (self.emitter) {
> 33 | self.emitter->onTapOverlay({});
| ^ member reference base type 'id' is not a structure or union
34 | return YES;
35 | }
36 | return NO;
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:45:61)
43 | - (instancetype)initWithFrame:(CGRect)frame {
44 | if (self = [super initWithFrame:frame]) {
> 45 | static const auto defaultProps = std::make_shared<const RNCNaverMapPolygonProps>();
| ^ unknown type name 'RNCNaverMapPolygonProps'; did you mean 'facebook::react::RNCNaverMapPolygonProps'?
46 | _props = defaultProps;
47 | }
48 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:53:48)
51 |
52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
> 53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
| ^ use of undeclared identifier 'RNCNaverMapPolygonProps'; did you mean 'RNCNaverMapPolygonCls'?
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
55 |
56 | if (prev.zIndexValue != next.zIndexValue)
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:53:71)
51 |
52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
> 53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
| ^ expected '>'
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
55 |
56 | if (prev.zIndexValue != next.zIndexValue)
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:54:48)
52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
> 54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
| ^ use of undeclared identifier 'RNCNaverMapPolygonProps'; did you mean 'RNCNaverMapPolygonCls'?
55 |
56 | if (prev.zIndexValue != next.zIndexValue)
57 | _inner.zIndex = next.zIndexValue;
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:54:71)
52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(_props);
> 54 | const auto& next = *std::static_pointer_cast<RNCNaverMapPolygonProps const>(props);
| ^ expected '>'
55 |
56 | if (prev.zIndexValue != next.zIndexValue)
57 | _inner.zIndex = next.zIndexValue;
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:131:22)
129 | }
130 |
> 131 | [super updateProps:props oldProps:oldProps];
| ^ reference to type 'const facebook::react::Props::Shared' could not bind to an lvalue of type '__strong id'
132 | }
133 |
134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:131:37)
129 | }
130 |
> 131 | [super updateProps:props oldProps:oldProps];
| ^ reference to type 'const facebook::react::Props::Shared' could not bind to an lvalue of type '__strong id'
132 | }
133 |
134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:135:46)
133 |
134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 135 | return concreteComponentDescriptorProvider<RNCNaverMapPolygonComponentDescriptor>();
| ^ unknown type name 'RNCNaverMapPolygonComponentDescriptor'; did you mean 'facebook::react::RNCNaverMapPolygonComponentDescriptor'?
136 | }
137 |
138 | Class<RCTComponentViewProtocol> RNCNaverMapPolygonCls(void) {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:135:10)
133 |
134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 135 | return concreteComponentDescriptorProvider<RNCNaverMapPolygonComponentDescriptor>();
| ^ use of undeclared identifier 'concreteComponentDescriptorProvider'; did you mean 'facebook::react::concreteComponentDescriptorProvider'?
136 | }
137 |
138 | Class<RCTComponentViewProtocol> RNCNaverMapPolygonCls(void) {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm:135:10)
133 |
134 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 135 | return concreteComponentDescriptorProvider<RNCNaverMapPolygonComponentDescriptor>();
| ^ no viable conversion from returned value of type 'ComponentDescriptorProvider' to function return type 'id'
136 | }
137 |
138 | Class<RCTComponentViewProtocol> RNCNaverMapPolygonCls(void) {
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapPath.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapMarker.mm
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:30:20)
28 | }
29 |
> 30 | - (std::shared_ptr<RNCNaverMapMarkerEventEmitter const>)emitter {
| ^ use of undeclared identifier 'RNCNaverMapMarkerEventEmitter'
31 | if (!_eventEmitter)
32 | return nullptr;
33 | return std::static_pointer_cast<RNCNaverMapMarkerEventEmitter const>(_eventEmitter);
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:136:59)
134 | #pragma clang diagnostic pop
135 |
> 136 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
| ^ use of undeclared identifier 'Props'
137 | const auto& prev = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(_props);
138 | const auto& next = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(props);
139 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:219:4)
217 | }
218 |
> 219 | + (ComponentDescriptorProvider)componentDescriptorProvider {
| ^ expected a type
220 | return concreteComponentDescriptorProvider<RNCNaverMapMarkerComponentDescriptor>();
221 | }
222 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:33:35)
31 | if (!_eventEmitter)
32 | return nullptr;
> 33 | return std::static_pointer_cast<RNCNaverMapMarkerEventEmitter const>(_eventEmitter);
| ^ use of undeclared identifier 'RNCNaverMapMarkerEventEmitter'
34 | }
35 |
36 | - (instancetype)init {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:43:21)
41 | _inner.touchHandler = [self](NMFOverlay* overlay) -> BOOL {
42 | if (self.emitter) {
> 43 | self.emitter->onTapOverlay({});
| ^ member reference base type 'id' is not a structure or union
44 | return YES;
45 | }
46 | return NO;
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:55:61)
53 | - (instancetype)initWithFrame:(CGRect)frame {
54 | if (self = [super initWithFrame:frame]) {
> 55 | static const auto defaultProps = std::make_shared<const RNCNaverMapMarkerProps>();
| ^ unknown type name 'RNCNaverMapMarkerProps'; did you mean 'facebook::react::RNCNaverMapMarkerProps'?
56 | _props = defaultProps;
57 | }
58 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:137:48)
135 |
136 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
> 137 | const auto& prev = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(_props);
| ^ use of undeclared identifier 'RNCNaverMapMarkerProps'; did you mean 'RNCNaverMapMarkerCls'?
138 | const auto& next = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(props);
139 |
140 | if (!nmap::isCoordEqual(prev.coord, next.coord))
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:137:70)
135 |
136 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
> 137 | const auto& prev = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(_props);
| ^ expected '>'
138 | const auto& next = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(props);
139 |
140 | if (!nmap::isCoordEqual(prev.coord, next.coord))
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:138:48)
136 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
137 | const auto& prev = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(_props);
> 138 | const auto& next = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(props);
| ^ use of undeclared identifier 'RNCNaverMapMarkerProps'; did you mean 'RNCNaverMapMarkerCls'?
139 |
140 | if (!nmap::isCoordEqual(prev.coord, next.coord))
141 | _inner.position = nmap::createLatLng(next.coord);
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:138:70)
136 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
137 | const auto& prev = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(_props);
> 138 | const auto& next = *std::static_pointer_cast<RNCNaverMapMarkerProps const>(props);
| ^ expected '>'
139 |
140 | if (!nmap::isCoordEqual(prev.coord, next.coord))
141 | _inner.position = nmap::createLatLng(next.coord);
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:212:22)
210 | }
211 |
> 212 | [super updateProps:props oldProps:oldProps];
| ^ reference to type 'const facebook::react::Props::Shared' could not bind to an lvalue of type '__strong id'
213 | }
214 |
215 | Class<RCTComponentViewProtocol> RNCNaverMapMarkerCls(void) {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:212:37)
210 | }
211 |
> 212 | [super updateProps:props oldProps:oldProps];
| ^ reference to type 'const facebook::react::Props::Shared' could not bind to an lvalue of type '__strong id'
213 | }
214 |
215 | Class<RCTComponentViewProtocol> RNCNaverMapMarkerCls(void) {
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:220:46)
218 |
219 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 220 | return concreteComponentDescriptorProvider<RNCNaverMapMarkerComponentDescriptor>();
| ^ unknown type name 'RNCNaverMapMarkerComponentDescriptor'; did you mean 'facebook::react::RNCNaverMapMarkerComponentDescriptor'?
221 | }
222 |
223 | @end
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:220:10)
218 |
219 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 220 | return concreteComponentDescriptorProvider<RNCNaverMapMarkerComponentDescriptor>();
| ^ use of undeclared identifier 'concreteComponentDescriptorProvider'; did you mean 'facebook::react::concreteComponentDescriptorProvider'?
221 | }
222 |
223 | @end
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Marker/RNCNaverMapMarker.mm:220:10)
218 |
219 | + (ComponentDescriptorProvider)componentDescriptorProvider {
> 220 | return concreteComponentDescriptorProvider<RNCNaverMapMarkerComponentDescriptor>();
| ^ no viable conversion from returned value of type 'ComponentDescriptorProvider' to function return type 'id'
221 | }
222 |
223 | @end
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapLeafMarkerUpdater.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapGround.mm
[RUN_FASTLANE] › Packaging react-native-naver-map-build-fail Pods/React-Codegen » libReact-Codegen.a
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapClusterMarkerUpdater.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapClusterKey.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapCircle.mm
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Circle/RNCNaverMapCircle.mm:20:20)
18 | }
19 |
> 20 | - (std::shared_ptr<RNCNaverMapCircleEventEmitter const>)emitter {
| ^ use of undeclared identifier 'RNCNaverMapCircleEventEmitter'
21 | if (!_eventEmitter)
22 | return nullptr;
23 | return std::static_pointer_cast<RNCNaverMapCircleEventEmitter const>(_eventEmitter);
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Circle/RNCNaverMapCircle.mm:52:22)
50 | }
51 |
> 52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
| ^ use of undeclared identifier 'Props'
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapCircleProps const>(_props);
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapCircleProps const>(props);
55 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Circle/RNCNaverMapCircle.mm:52:59)
50 | }
51 |
> 52 | - (void)updateProps:(Props::Shared const&)props oldProps:(Props::Shared const&)oldProps {
| ^ use of undeclared identifier 'Props'
53 | const auto& prev = *std::static_pointer_cast<RNCNaverMapCircleProps const>(_props);
54 | const auto& next = *std::static_pointer_cast<RNCNaverMapCircleProps const>(props);
55 |
[RUN_FASTLANE]
❌ (node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Circle/RNCNaverMapCircle.mm:90:4)
88 | }
89 |
> 90 | + (ComponentDescriptorProvider)componentDescriptorProvider {
| ^ expected a type
91 | return concreteComponentDescriptorProvider<RNCNaverMapCircleComponentDescriptor>();
92 | }
93 |
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapArrowheadPath.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » mj-studio-react-native-naver-map-dummy.m
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapViewImpl.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapView.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapPolyline.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapPolygon.mm
[RUN_FASTLANE] › Packaging react-native-naver-map-build-fail Pods/React-Codegen » libReact-Codegen.a
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map RNCNaverMapMarker.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapLeafMarkerUpdater.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapGround.mm
[RUN_FASTLANE] › Compiling @mj-studio/react-native-naver-map Pods/mj-studio-react-native-naver-map » RNCNaverMapClusterMarkerUpdater.mm
[RUN_FASTLANE] ▸ ** BUILD FAILED **
[RUN_FASTLANE] ▸ The following build commands failed:
[RUN_FASTLANE] ▸ CompileC /var/folders/cd/jsxgv63n4z7g7r59606q7rfm0000gn/T/eas-build-local-nodejs/2b4da963-10bc-418b-abee-687018ab9145/build/ios/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/mj-studio-react-native-naver-map.build/Objects-normal/x86_64/RNCNaverMapPolygon.o /var/folders/cd/jsxgv63n4z7g7r59606q7rfm0000gn/T/eas-build-local-nodejs/2b4da963-10bc-418b-abee-687018ab9145/build/node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'mj-studio-react-native-naver-map' from project 'Pods')
[RUN_FASTLANE] ▸ (1 failure)
[RUN_FASTLANE] ** BUILD FAILED **
[RUN_FASTLANE]
[RUN_FASTLANE]
[RUN_FASTLANE] The following build commands failed:
[RUN_FASTLANE] CompileC /var/folders/cd/jsxgv63n4z7g7r59606q7rfm0000gn/T/eas-build-local-nodejs/2b4da963-10bc-418b-abee-687018ab9145/build/ios/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/mj-studio-react-native-naver-map.build/Objects-normal/x86_64/RNCNaverMapPolygon.o /var/folders/cd/jsxgv63n4z7g7r59606q7rfm0000gn/T/eas-build-local-nodejs/2b4da963-10bc-418b-abee-687018ab9145/build/node_modules/@mj-studio/react-native-naver-map/ios/Overlay/Polygon/RNCNaverMapPolygon.mm normal x86_64 objective-c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'mj-studio-react-native-naver-map' from project 'Pods')
[RUN_FASTLANE] (1 failure)
[RUN_FASTLANE] Exit status: 65
[RUN_FASTLANE]
[RUN_FASTLANE] +---------------------------------------+
[RUN_FASTLANE] | Build environment |
[RUN_FASTLANE] +-------------+-------------------------+
[RUN_FASTLANE] | xcode_path | /Applications/Xcode.app |
[RUN_FASTLANE] | gym_version | 2.220.0 |
[RUN_FASTLANE] | sdk | iPhoneOS17.4.sdk |
[RUN_FASTLANE] +-------------+-------------------------+
[RUN_FASTLANE]
[RUN_FASTLANE] Looks like fastlane ran into a build/archive error with your project
[RUN_FASTLANE] It's hard to tell what's causing the error, so we wrote some guides on how
[RUN_FASTLANE] to troubleshoot build and signing issues: https://docs.fastlane.tools/codesigning/getting-started/
[RUN_FASTLANE] Before submitting an issue on GitHub, please follow the guide above and make
[RUN_FASTLANE] sure your project is set up correctly.
[RUN_FASTLANE] fastlane uses `xcodebuild` commands to generate your binary, you can see the
[RUN_FASTLANE] the full commands printed out in yellow in the above log.
[RUN_FASTLANE] Make sure to inspect the output above, as usually you'll find more error information there
[RUN_FASTLANE] [!] Error building the application - see the log above
[RUN_FASTLANE] Error: The "Run fastlane" step failed with an unknown error. Refer to "Xcode Logs" below for additional, more detailed logs.
Build failed
The "Run fastlane" step failed with an unknown error. Refer to "Xcode Logs" below for additional, more detailed logs.
npx exited with non-zero code: 1
Error: build command failed.
Reproducible Sample Repository
https://github.com/kdby-io/react-native-naver-map-build-fail
Code of Conduct
- I agree to follow this project's Code of Conduct
mym0404 commented