문의 시, 사용하시는 SDK 버전 정보와 디벨로퍼스 앱ID를 알려주세요.
사용중인 SDK 버전 2.15.0
앱 id 296111
카카오 SDK를 유니티에서 dependencies 와 브릿지를 통해 사용하고 있는데요
dependencies 에서 KakaoSDKUser 버전을 2.15에서 2.22로 수정을 했는데 빌드시
[!] CocoaPods could not find compatible versions for pod “KakaoSDKUser”:
In Podfile:
KakaoSDKUser (= 2.22)
Specs satisfying the KakaoSDKUser (= 2.22)
dependency were found, but they required a higher minimum deployment target.
[!] Found multiple specifications for KakaoSDKUser (2.22.0)
:
에러가 나오더라구요.
pod install 해보니 같은 에러가 나오고 Podfile 에서 ‘~> 2.22.0’ 으로 수정후 Pod install 도 같은 에러가 나옵니다.
dependencies
iosPod name=“KakaoSDKUser” version=“2.15.0” minTargetSdk=“8.0”
Podfile
source ‘https://cdn.cocoapods.org/’
source ‘https://github.com/CocoaPods/Specs’
platform :ios, ‘11.0’
target ‘UnityFramework’ do
pod ‘Firebase/Analytics’, ‘9.3.0’
pod ‘Firebase/Auth’, ‘9.3.0’
pod ‘Firebase/Core’, ‘9.3.0’
pod ‘Firebase/Messaging’, ‘9.3.0’
pod ‘Google-Mobile-Ads-SDK’, ‘~> 10.4’
pod ‘KakaoSDKUser’, ‘2.22.0’
end
target ‘Unity-iPhone’ do
end
use_frameworks! :linkage => :static