An app whose icon is stuck with "Waiting" during installation is usually typical of a code signature problem. The app has been downloaded on the phone but rejected by iOS at signature verification time.
Let's proceed methodically. You say you could build and upload successfully with Xcode. So, we know the certificates you have on your Mac are good. We'll start from here.
You have understood that there are basically 2 signature types:
- Development signatures, apps signed with those can be directly deployed to your iPhone (mainly for testing) but can't be uploaded to Apple ;
- Distribution signatures, apps signed with those cannot be deployed to your iPhone directly, but can be uploaded to Apple (then Apple re-signs them with their own certificate, which is why your device trusts them when it seems them on the App Store)
As you have working certificates on your Mac, you should migrate them to Windows. You don't need to migrate the whole SDK, just the *certificate* that Xcode uses to sign your app, using macOS's Keychain Access utility (the documentation explains how to do that) ; and the *provisioning profile* with which it installs on your device.
If you built with Xcode for development (i.e. direct deployment to your device) you should look for and migrate a *development* certificate and provisioning profile, and if you built with Xcode for uploading to Apple you should look for and migrate a *distribution* certificate and provisioning profile.
How to find your iOS code signing certificate on your Mac :
- open Spotlight (the search magnifier), type "Keychain Access.app". Open that app.
- make sure the "session" keychain is highlighted in the left panel
- in the right panel you see a list of certificates. The one you're looking for either begins with "Apple Development: " or "Apple Distribution: ", is *not* expired yet, and has a '>' mark next to it which when you click it shows the *private key* with which the certificate is associated. Select the right certificate, then right-click (or Control+click) and select "Export". Choose the .p12 format, enter a filename, and move that .p12 file to Windows. It will contain both your certificate and its private key.
How to find the provisioning profile for your app on Mac :
- if your app was built for a *real device* at least once, do a file search in Xcode's DerivedData directory for this app for a file called "embedded.mobileprovision". It must be located in a folder that has your app's name in it (such as ...VeryLongPath/YourAppName.app/embedded.mobileprovision). This is your provisioning profile, the very one that Xcode used.
- if your app was not built yet (or if you cleaned the Xcode intermediary files), you'll find your provisioning profile in ~/Library/MobileDevice/Provisioning Profiles/ and it will have a nonfriendly name in hex chars. You'll need to right-click (or Control+click) and display its information to figure out which one is the right one.
At this point you will have migrated 3 things in the Windows iOS keychain: your certificate, its private key, and a provisioning profile. If you did it right these are the very items that Xcode used to sign your app.
Build and sign your app with this signing identity.
- Do you get an error message during the build ?
- If not, if it's a development certificate, can the app be installed on your iPhone ? Else if it's a distribution certificate, can the app be uploaded to Apple ?
If it's a no-op to these two points, then it's likely that you've hit a bug in the code signer that I'll have to take a closer look at. In which case please send me your .ipa file by email at pm at this domain for analysis. I'll look at this in priority. I suspect the unusually long name of your signing identity could maybe overflow a static buffer somewhere.