📚 최근에, iOS 및 Wat chOS 앱을 TestFlight 올릴 때 만났던
identifier 통일 문제 컴팩트하게 써서 남겨보자 합니다..
TestFlight 아카이브시 만났던 에러 메세지
Invalid WKCompanionAppBundleIdentifier. The Info.plist of Apple Watch application 'DancingMarker.app/Watch/WatchDancingMarker Watch App.app' contains a WKCompanionAppBundleIdentifier value 'test.DancingMarker' that does not match the parent application's CFBundleIdentifier 'com.test.DancingMarker'.
결국 identifier를 통일해야한다.
iOS identifier가 com.test.DancingMarker 라면
Watch identifier는 com.test.DancingMarker.watchkitapp 이렇게!
그리고 info에서
WKCompanionAppBundleIdentifier 저 속성을 iOS identifier랑 잘 통일 시켜야함 ..
우리는 WK WKCompanionAppBundleIdentifier 저 속성을 뒤늦게 발견해서 오래걸렸기 때문이다 ..
( test.DancingMarker 이렇게 되어있었는데 com.test.DancingMarker이렇게 되어야함 ! )
'🍎 iOS > WatchOS' 카테고리의 다른 글
[WatchOS][SwiftUI] NavigationLink - PlainButtonStyle() (0) | 2024.07.07 |
---|