LoginSignup
0
1

More than 3 years have passed since last update.

iOS 9 の端末でIn-Houseがダウンロードできない時メモ

Posted at

iOSアプリをInHouseで配布したのでいざiOS9端末で取ろうとしたら
「アプリ名 は現在ダウンロードできません」 のダイアログが出たのでその原因メモ

結論

InHouseのipa置き場に置く、plistファイルのbundleIDが実際のものと違っていた

原因

ipaのbundleId
jp.bizen.ios.exemple.app-enterprise

InHouse plist
jp.bizen.ios.exemple.app-e

開発途中でbundleIdの管理方法が変わってしまったため起きた。
Xcodeに繋いでログを見ながらインストールしないと気づかなかったです :weary:

Xcode 11 でインストール失敗のログを読む

  1. Xcodeに端末を接続
  2. 上部 [Window] -> [Devices and Simulators] -> [Open Console]
  3. 右上のフィルタに Failed と入れる
  4. ダウンロードを開始する

ずらずら出てくるが

BundleValidator: Failed bundleIdentifier: jp.bizen.ios.exemple.app-e does not match expected bundleIdentifier: jp.bizen.ios.exemple.app-enterprise

 [ApplicationWorkspace]: Failed to install application: jp.bizen.ios.exemple.app-e; /var/mobile/Media/Downloads/-..../-....; Error Domain=SSErrorDomain Code=143 "(null)"

こんな感じで出てきます。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1