【解決】iOS16にしたらEnterpriseアプリがインストールできなくなった。
※iOSアプリをplistとipaファイルで公開しているApple Developer Enterprise Program使用者向け。
結論
.plistの plist.dict[0].array[0].dict[0].dict[0].string[0] のbundle-identifierの値を Apple Developer、Identifiersに登録したBundle IDと同じする。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://example.com/app.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.example.app</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>App Name</string>
</dict>
</dict>
</array>
</dict>
</plist>
※iOS15までは適当で良かったけど、iOS16だと厳正になった様子。