QuadFlask / react-native-naver-map

🗺️naver map for react-native
MIT License
163 stars 147 forks source link

'NMapsMap/NMGLatLng.h' file not found #167

Open simp7 opened 1 year ago

simp7 commented 1 year ago

Version of react-native-naver-map libraries

0.0.66

Version of react-native

0.68.3

Platforms you faced the error (IOS or Android or both?)

iOS

Expected behavior

pod update && pod install 후 정상 작동

Actual behavior

pod update && pod install 후 iOS로 컴파일 시 'NMapsMap/NMGLatLng.h' file not found 오류 발생

일시적인 해결 방법으로는 모든 파일의

import <NMapsMap/NMGLatLng.h>

import <NMapsMap/NMGLatLngBounds.h>

를 지우면 됩니다만 라이브러리 내에서의 수정이기 때문에 해당 해결법을 적용한 버전이 새로 나와야 근본적으로 해결될 것 같습니다.

Tested environment (Emulator? Real Device?)

MacBook Pro(M1) - iphone 12 pro

Screen Shot

deokyeong93 commented 1 year ago

기종: M1 Mac Pro RN 버전 : 0.71.1 문제 발생했던 NMapsMap 버전은 (3.16.1) 이었습니다.

저도 해당 이슈 발생했습니다 ㅠㅠ 일단 이 이슈보고 3.15.0 로 명시해서 진행했더니 시뮬레이터 돌긴하네요 ㅠ

근본적인 해결책은 아니지만 여러 옵션 중 하나라 기록용으로 남겨봅니다!

Podfile

require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, min_ios_version_supported
prepare_react_native_project!

# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded
#
# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js`
# ```js
# module.exports = {
#   dependencies: {
#     ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
# ```
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled(["Debug"], { 'Flipper' => '0.159.0' })

linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
  Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
  use_frameworks! :linkage => linkage.to_sym
end

target 'deliveryDougie' do
  config = use_native_modules!

  # Flags change depending on the env values.
  flags = get_default_flags()

  use_react_native!(
    :path => config[:reactNativePath],
    # Hermes is now enabled by default. Disable by setting this flag to false.
    # Upcoming versions of React Native may rely on get_default_flags(), but
    # we make it explicit here to aid in the React Native upgrade process.
    :hermes_enabled => flags[:hermes_enabled],
    :fabric_enabled => flags[:fabric_enabled],
    # Enables Flipper.
    #
    # Note that if you have use_frameworks! enabled, Flipper will not work and
    # you should disable the next line.
    :flipper_configuration => flipper_config,
    # An absolute path to your application root.
    :app_path => "#{Pod::Config.instance.installation_root}/.."
  )

  target 'deliveryDougieTests' do
    inherit! :complete
    # Pods for testing
  end

+ pod 'NMapsMap','3.15.0'

  post_install do |installer|
    react_native_post_install(
      installer,
      # Set `mac_catalyst_enabled` to `true` in order to apply patches
      # necessary for Mac Catalyst builds
      :mac_catalyst_enabled => false
    )
    __apply_Xcode_12_5_M1_post_install_workaround(installer)
  end
end
deokyeong93 commented 1 year ago

이거 보고 3.16.0도 시도해봤는데 동작합니다. 가급적이면 일단 최신버전으로 하면 좋을 것 같네요.. (그러나 역시 근본적인 해결은 아닌 ㅠ)

luongduy2798 commented 11 months ago
replace #import <NMapsMap/NMGLatLng.h>
to  #import <NMapsGeometry/NMGLatLng.h>
Brayden-kwak commented 6 months ago

이 문제 아직도 안고쳤나... 휴...

Brayden-kwak commented 6 months ago
replace #import <NMapsMap/NMGLatLng.h>
to  #import <NMapsGeometry/NMGLatLng.h>

replace할 코드양이 많아서... 그리고 replace하고나니 다른 코드에 문제가 발생하더군요.

mym0404 commented 6 months ago

안녕하세요, Fabric에서 지원되는 새로운 라이브러리를 개발중에 있으며 아직 초기 단계지만 빠르게 개발할 예정이니 참고해주시면 감사드리겠습니다.