pod install 에러 발생 해결방법 pod install error The `RNIKInteractiveImageLibrary` pod failed to validate due to 1 error
pod install
Adding a custom script phase for Pod RNFBApp: [RNFB] Core Configuration
Detected React Native module pods for BVLinearGradient, RNCAsyncStorage, RNCMaskedView, RNDateTimePicker, RNFBApp, RNFBAuth, RNFBFirestore, RNFBMessaging, RNFBStorage, RNFS, RNGestureHandler, RNIKInteractiveImageLibrary, RNLocalize, RNPermissions, RNReanimated, RNSVG, RNScreens, RNVectorIcons, kakao-login, lottie-react-native, react-native-camera-kit, react-native-fbsdk, react-native-geolocation, react-native-image-picker, react-native-maps, react-native-safe-area-context, react-native-slider, react-native-version-number, and react-native-webview
Analyzing dependencies
[!] The `RNIKInteractiveImageLibrary` pod failed to validate due to 1 error:
- ERROR | attributes: Missing required attribute `homepage`.
- WARN | source: The version should be included in the Git tag.
- WARN | description: The description is equal to the summary.
이 에러의 원인은 해당 패키지의 podspec 설정의 문제이다.
homepage 설정이 되어있지 않기 때문에 발생되는 문제인데
이미지의 보이듯 s.homepage 값이 "" 이렇게 되어 있다.
이것만 고치면 에러가 난다.
위 패키지의 에러는 또하나가 더 있었는데
s.source 의 git 소스가 존재하지 않는 소스였다 수정해줬더니
pod install 이 에러 없이 잘 된다.
attributes: Missing required attribute `homepage`
이거 때문에 고생하는 일 없었으면 좋겠습니다.
이후로 에러 없이 설치가 잘됩니다.
다들 즐거운 리네 코딩 하십시오