FLYNNLABAboutMeCodingActivityStudy 2024초등수학
iOS8 업데이트 하고 사내 배포용 앱 설치가 안 되는 경우 해결 방법
ios, ios8

ISSUE

iOS8을 업데이트 하고 나서 Enterprise 앱의 원격 배포가 되지 않았다.

SOLUTION

plist 파일에서 bundle id를 수정하면 iOS8 에도 원격 설치가 다시 된다.

ASIS

<key>bundle-identifier</key>
<string>com.mycom.MyApp</string>

TOBE

<key>bundle-identifier</key>
<string>com.mycom.MyApp.ios8fix</string>

LINK

http://stackoverflow.com/questions/25772664/enterprise-app-update-distribution-on-ios-8