Reputation: 8327
I used Visual Studio 2019 to create a new xamarin.ios project. Went to project's properties and selected Automatic Provisioning. Went to tools Options Xamarin > Apple Accounts > did Add and entered my Apple ID and password, and it hangs.
I've tried restarting everything and started from a new Xamarin.ios project.
The Apple Development account I just purchased today.
Upvotes: 0
Views: 3478
Reputation: 12723
Before you start the automatic signing process, you should ensure that you have an Apple ID added in Visual Studio, as described in the Apple Account Management guide. Once you've added an Apple ID, you can use any associated Team. This allows certificates, profiles, and other IDs to be made against the team. The team ID is also used to create a prefix for an App ID that will be included in the provisioning profile. Having this allows Apple to verify that you are who you say you are.
To automatically sign your app for deployment on an iOS device, do the following:
Pair Visual Studio 2019 to a Mac as described in the Pair to Mac guide.
In the Solution Explorer, right-click the project name and select Properties. Then, navigate to the iOS Bundle Signing tab.
Here is the official document with training video by James.
Upvotes: 2