iOS Question Failed to determine the appleID from bundleID

jai

Active Member
Licensed User
Longtime User
I get this messge while trying to upload and ipa file using iTunes Connect Updater-

2026-07-30 17:04:52.253 ERROR: [altool.6000027C8740] Failed to determine the appleID from bundleID com.sawhney.boss with platform IOS. Please sign in with an app-specific password. You can create one at account.apple.com. (-22910) (12)

I got this message with an existing Store Provision. Just to make sure this is not related to the Store Provisioning Profile, I recreated a new one. and got the same error message.

This is an existing app that has been updated before. This is the first time I am seeing this message.
 

mcqueccu

Expert
Licensed User
Longtime User
Please sign in with an app-specific password. You can create one at account.apple.com.

Its telling you what you need to do. It has nothing to do with the profiles.
You don't need to use your login password: It needs APP-SPECIFIC-PASSWORD for the upload. Goto the link, login, go under security and create the app specific password. You can use it multiple times. You don't need to create new one every time you want to upload new app
 
Upvote 0

jai

Active Member
Licensed User
Longtime User
Its telling you what you need to do. It has nothing to do with the profiles.
You don't need to use your login password: It needs APP-SPECIFIC-PASSWORD for the upload. Goto the link, login, go under security and create the app specific password. You can use it multiple times. You don't need to create new one every time you want to upload new app
Thanks mcqueccu for your response. I have been using the App Specific Password for a while. But it seems to have stopped working (with no notice or warning). As per your suggestion I created a new App Specific Password and the the IPA upload process worked.

The file gets uploaded but generates the following messages-

Running altool at path '/Applications/Xcode.app/Contents/SharedFrameworks/ContentDelivery.framework/Resources/altool'...

2026-07-30 18:45:09.603 INFO: [ContentDelivery.Uploader.6000028E4740]
==========================================
UPLOAD SUCCEEDED with no errors, 2 warnings
Delivery UUID: 8d730fc1-298e-4ae0-bf64-31c035bf1dfe
Transferred 13486470 bytes in 0.212 seconds (63.6MB/s, 508.839Mbps)
==========================================
2026-07-30 18:45:09.605 WARN: [altool.6000028E4740] Missing Document Configuration. By declaring the CFBundleDocumentTypes key in your app, you've indicated that your app is able to open documents. Please set the UISupportsDocumentBrowser key to "YES" if your app uses a UIDocumentBrowserViewController. Otherwise, set the LSSupportsOpeningDocumentsInPlace key in the Info.plist to "YES" (recommended) or "NO" to specify whether the app can open files in place. All document-based apps must include one of these configurations. For more information, visit https://developer.apple.com/document-based-apps/. (90737)
server_warning :
code : 90737
description : Missing Document Configuration. By declaring the CFBundleDocumentTypes key in your app, you've indicated that your app is able to open documents. Please set the UISupportsDocumentBrowser key to "YES" if your app uses a UIDocumentBrowserViewController. Otherwise, set the LSSupportsOpeningDocumentsInPlace key in the Info.plist to "YES" (recommended) or "NO" to specify whether the app can open files in place. All document-based apps must include one of these configurations. For more information, visit https://developer.apple.com/document-based-apps/.
Incomplete Document Type Configuration. The CFBundleDocumentTypes dictionary array in the 'com.sawhney.boss' Info.plist should contain an LSHandlerRank value for the CFBundleTypeName 'txt File' entry. Refer to https://developer.apple.com/library...nKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key. (90788)
server_warning :
code : 90788
description : Incomplete Document Type Configuration. The CFBundleDocumentTypes dictionary array in the 'com.sawhney.boss' Info.plist should contain an LSHandlerRank value for the CFBundleTypeName 'txt File' entry. Refer to https://developer.apple.com/library...nKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key.
 
Upvote 0

mcqueccu

Expert
Licensed User
Longtime User
Thanks mcqueccu for your response. I have been using the App Specific Password for a while. But it seems to have stopped working (with no notice or warning). As per your suggestion I created a new App Specific Password and the the IPA upload process worked.

The file gets uploaded but generates the following messages-

Running altool at path '/Applications/Xcode.app/Contents/SharedFrameworks/ContentDelivery.framework/Resources/altool'...

2026-07-30 18:45:09.603 INFO: [ContentDelivery.Uploader.6000028E4740]
==========================================
UPLOAD SUCCEEDED with no errors, 2 warnings
Delivery UUID: 8d730fc1-298e-4ae0-bf64-31c035bf1dfe
Transferred 13486470 bytes in 0.212 seconds (63.6MB/s, 508.839Mbps)
==========================================
2026-07-30 18:45:09.605 WARN: [altool.6000028E4740] Missing Document Configuration. By declaring the CFBundleDocumentTypes key in your app, you've indicated that your app is able to open documents. Please set the UISupportsDocumentBrowser key to "YES" if your app uses a UIDocumentBrowserViewController. Otherwise, set the LSSupportsOpeningDocumentsInPlace key in the Info.plist to "YES" (recommended) or "NO" to specify whether the app can open files in place. All document-based apps must include one of these configurations. For more information, visit https://developer.apple.com/document-based-apps/. (90737)
server_warning :
code : 90737
description : Missing Document Configuration. By declaring the CFBundleDocumentTypes key in your app, you've indicated that your app is able to open documents. Please set the UISupportsDocumentBrowser key to "YES" if your app uses a UIDocumentBrowserViewController. Otherwise, set the LSSupportsOpeningDocumentsInPlace key in the Info.plist to "YES" (recommended) or "NO" to specify whether the app can open files in place. All document-based apps must include one of these configurations. For more information, visit https://developer.apple.com/document-based-apps/.
Incomplete Document Type Configuration. The CFBundleDocumentTypes dictionary array in the 'com.sawhney.boss' Info.plist should contain an LSHandlerRank value for the CFBundleTypeName 'txt File' entry. Refer to https://developer.apple.com/library...nKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key. (90788)
server_warning :
code : 90788
description : Incomplete Document Type Configuration. The CFBundleDocumentTypes dictionary array in the 'com.sawhney.boss' Info.plist should contain an LSHandlerRank value for the CFBundleTypeName 'txt File' entry. Refer to https://developer.apple.com/library...nKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key.
It's successful.

These additional information were added starting from v10
 
Upvote 0
Top