IT story

iOS 8의 엔터프라이즈 앱 업데이트 배포

hot-time 2020. 8. 2. 17:21
반응형

iOS 8의 엔터프라이즈 앱 업데이트 배포


itmsURL을 통해 배포하는 엔터프라이즈 앱이 있습니다 .

itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=https://$MY_PLIST_URL.plist

iOS 7에서는 다운로드와 업데이트가 모두 제대로 작동합니다. 그러나 iOS 8에서는 오류가 발생합니다.

LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com.mycom.MyApp

내 plist에서 나는

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

iOS 8의 앱에서 버전 0.2.1을 실행 중입니다.


앱 배포 에서이 문제가 발생했습니다. 우리는 ipa 번들 식별자를 동일하게 유지하면서 다운로드 배포에 사용하여 .plist 내부의 번들 식별자를 '가짜'서이 문제를 해결할 수있었습니다.

예를 들어 plist에서 :

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

com.mycom.MyAppcom.mycom.MyApp.ios8fix로 변경하십시오.

앱은 새로운 앱 아이콘을 사용하여 설치되며 설치 후에 사라집니다.

이미 앱을 설치 한 경우 설치하는 동안 새 앱 아이콘이 표시됩니다. 설치 후이 아이콘은 사라지지만 기존 버전의 앱은 업데이트됩니다. 새로 설치하면 설치 아이콘이 사라지고 설치된 응용 프로그램 아이콘이 나타납니다.

iOS 8이 번들 식별자를 캐싱하고 요청 된 설치를 이러한 캐시 된 설치와 비교하는 것 같습니다. 대부분의 경우 설치를 요청하는 팝업 만 표시되지만 아무 일도 일어나지 않습니다.

Sean이 이미 알고 있듯이 xCode 6 GM 및 공식 iOS 8 버전과 함께 나타납니다. 이전에 응용 프로그램을 설치하지 않은 장치는 응용 프로그램을 설치하는 데 아무런 문제가 없습니다.


이것은 나에게 더 효과적이며 매니페스트 또는 다른 속임수를 만질 필요가 없습니다 ( plist자동 생성 되는 Xcode 서버에 적합 ).

  1. iExplorer 다운로드 ( http://www.macroplant.com/iexplorer/ )
  2. 장치를 연결
  3. "미디어> 다운로드"의 모든 파일을 삭제하십시오.
  4. 장치를 다시 시작

장치 캐시가 재설정되었으므로 이제 평소와 같이 앱을 설치할 수 있습니다.


같은 문제가 있습니다. 나는 그것을 다음과 같이 재현했다.

1) iOS 7에서 iOS 8 GM으로 업그레이드하는 동안 응용 프로그램 설치

2) iOS 8에서 제거

3) itms-services를 통해 설치하려고 : 동일한 번들 이름으로

응용 프로그램 Info.plist가 아닌 서버 plist에서 번들 식별자를 변경하려고 시도했을 때 작동했습니다 (응용 프로그램에 "그림자"아이콘이 남아 있지 않음). 그러나 그것은 사과 버그처럼 보입니다.


허용 된 솔루션은 더 이상 iOS9에서 작동하지 않습니다.

내 이해는 애플이 임시 바이너리가 App Store에서 다운로드 한 앱이나 앱을 대체하지 못하게하여 심각한 iOS 보안 허점을 막았다는 것입니다. 배경에 대해서는이 기사를 참조하십시오 (CVE-2015-3722 / 3725 및 CVE-2015-3725).

https://www.fireeye.com/blog/threat-research/2015/06/three_new_masqueatt.html

보안 관련 사항을 고려할 때 향후 IOS 버전에서는이 동작이 변경되지 않을 것으로 예상됩니다. 대체 옵션은 다음과 같습니다.

  • adhoc을 설치하기 전에 App Store 버전을 삭제하십시오.
  • 앱과 배포 plist에서 번들 ID를 변경하여 adhoc을 '새로운'앱으로 배포
  • TestFlight 사용

Gil이 말한 것은 정확 해 보이지만 더 구체적으로 서버에서 번들 버전 문자열을 증가시켜야한다는 것을 알았습니다.

    <key>bundle-version</key>
    <string>3.2.2</string>

이를 통해 최소한 OTA 설치를 수행 할 수 있습니다.

(죄송합니다 ... 댓글에 추가했지만 너무 n00b입니다.)


이상 살펴보세요 이 답변 하고 이 답변을 .

해킹 없이이 문제를 해결할 수 있습니다 .iOS8 assets의 경우 매니페스트 .plist파일의 display-imagefull-size-image키에 포함해야합니다. 엔터프라이즈 및 애드혹 배포를 위해 아카이브를 저장할 때 Xcode 5에서 사용할 수 있었지만 필수는 아닙니다.

install-manifet.plist 파일 의 템플릿으로 github에 요점을 만들었습니다 .


이것은 iOS8 Beta5에서 처음 발견 된 버그입니다. 그리고 그것은 여전히 ​​애플에 의해 GM seed와 공식 iOS8.0 버전에서 수정되지 않았습니다. 더 많은 토론이 여기에 있습니다.

현재 해결 방법은 다음과 같습니다.

  • If you don't care the contents in your device: do a clean restore in DFU mode of the device
  • If you want your things back
    1. Backup your iOS Device in iTunes before restore (without Ad-Hoc/enterprise app)
    2. After restored your device cleanly, install your Ad-Hoc/enterprise app
    3. Restore your backup from iTunes
    4. Now you are free to delete those Ad-Hoc/enterprise apps and reinstall them.

Problem solved by changing the bundle identifier in plist.

Normally, after tapping the itms link, it will shows the desktop which shows the icon installation. However, for my iOS 8.0 device, after tapping the itms link, it will not change to the installation page but installation is already working behind.


This is extreme but if you can't change your bundle identifier, which I couldn't, restoring your iPhone through iTunes to the latest iOS 8 and restoring from a backup fixes the problem.


Same problem exists on iOS 10 beta 1.

Dec 31 19:01:32 iphone-6s itunesstored[98] : LoadExternalDownloadManifestOperation: Ignore manifest download, already have bundleID: com.***************.ios with phase: SSDownloadPhaseWaiting

One thing that I do not understand here is that the date is December 31st in the XCode device log, however, device has correct date and time configured.

Update: Guys from HockeyApp notified Apple about this problem during WWDC and fix should come in the next seed.


If you build your iOS apps with a build script and you were previously using PackageApplication with the --sign flag then that may be causing problems. The --sign flag doesn't work any longer when building on 10.10 and removing it got all of our iOS apps installing again.

see: https://devforums.apple.com/thread/251624?tstart=0


Make sure you have a full internet access.

I was facing the same problem with OTA installation and IOS8. Because i'm behind a corporate proxy, the solutions above didn't work until I set manual proxy settings (not needed in IOS7) to solve that problem.


I have just encountered this issue on a device running 8.1, upgrading the device to 8.3 has resolved the issue. So either the bug is no longer present in 8.3.... or the act of upgrading cleared the cached data anyway.

참고URL : https://stackoverflow.com/questions/25772664/enterprise-app-update-distribution-on-ios-8

반응형