pod install์ ํ๋ฉด, ์๋์ ๊ฐ์ ์ค๋ฅ๊ฐ ์์ฃผ ๋ณด์ด๊ธฐ ์์ํ๋ค.
CocoaPods could not find compatible versions for pod
์ค๋ฅ์ธ๋ฐ
์์กด์ฑ๊ณผ ๊ด๋ จ๋ ์ค๋ฅ ๊ฐ๋ค.
๊ฐ ๋ชจ๋ ๋ณ๋ก ์ํฉ์ ๋ง๋ ์ค๋ฅ ํด๊ฒฐ๋ฒ์ ์ฐพ๊ธฐ ์์ํ๋ค.
[!] CocoaPods could not find compatible versions for pod "Firebase/Messaging":
In Podfile:
Firebase/Messaging (~> 7.4.0)
RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`) was resolved to 10.8.0, which depends on
Firebase/Messaging (~> 7.6.0)
Specs satisfying the `Firebase/Messaging (~> 7.4.0), Firebase/Messaging (~> 7.6.0)` dependency were found, but they required a higher minimum deployment target.
firebase cloud messaging ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ฐ๋ ๊ฒฝ์ฐ์ ์ค๋ฅ์ด๋ค.
7.4.0์์ 7.6.0์ผ๋ก ์์
target 'ImageNotification' do
pod 'Firebase/Messaging', '~> 7.6.0'
end
required a higher minimum deployment target.
๋ฅผ ๋ณด๋ฉด deployment target์ ์์ ํด์ผ ๋๋๋ฐ,
xcode์์ Deployment Target๋ค์ 10.0์ผ๋ก ๋์ฌ์ฃผ๋ฉด ๋๋ค.
firebase cloud messaging ๋ฌธ์์์๋ ํ๋ก์ ํธ ํ๊ฒ์ ios 10์ด์์ผ๋ก ํด์ผํ๋ค๊ณ ๋์์๋ค.
๋๋ PROJECT, Targets์ ๋ชจ๋ Deployment Target๋ฅผ ๋์ฌ์คฌ๋ค.