Search results for

Visual Studio Maui IOS

105,621 results found

Post

Replies

Boosts

Views

Activity

Unable to deploy app from Visual Studio on Windows 11 to iOS device
I am trying to get my app deployed to an iOs device (iphone 14) from Visual Studio on Windows 11. If the device I am trying to deploy to is included in https://developer.apple.com/account/resources/devices/list then I see below error in Visual Studio logs. Xamarin.Messaging.IDB.AppleProvisioningManager Error: 0 : Xamarin.MacDev.AppleSigning.AppleServerException: A device with number '0000xxxx-0014093926Bxxxx' already exists on this team. at Xamarin.MacDev.AppleSigning.AppStoreDeveloperPortal.d__42.MoveNext() in D:a_work1sExternalmaciostoolsXamarin.MacDev.AppleSigningAppleDeveloperPortalAppStoreDeveloperPortal.cs:line 913 If I disable it I see below error in Visual Studio logs: Xamarin.Messaging.Client.MessagingClient Error: 0 : An error occurred on the receiver while executing a post for topic xvs/idb/auto-provision and client vs26896sv3 Xamarin.Messaging.Exceptions.MessagingRemoteException: An error occurred on client xxxxxxx while executing a re
0
0
249
Jan ’25
Reply to Xcode 15 - 'DYLD 1 Library missing' error when running simulator with iOS 17 beta
I am trying to download a sample MAUI project provided by visual studio 2022 version 17.7.3 If you’re having problems with sample code published by a third-party vendor, I recommend that you seek advice from that vendor. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Sep ’23
Reply to Automatic Provisioning fails in VisualStudio 2022
I guess this has nothing to do with Visual Studio nor with .NET MAUI. My problem is, that VS wants to 'Configure Automatic Provisioning' but apple does not accept my request. I see in that the systems logs in and wants to request the provisioning but then this request is not accepted. In my opinion, there is something missing in my developer account and I haven't found what it is... Please check the error message on my screenshot, maybe that helps to narrow my problem.
3w
Adding developer account to Visual Studio - Need Help
I am unable to successfully add my Apple developer account to Visual Studio 2019. In Visual Studio under Tools->Options->Xamarin->Apple Accounts I add my account and get the following error: There was an error while trying to log in: An active membership to the Apple Developer Program is required. I logged into the Apple Developer site and it says I'm a App manager. I'm unsure how to check if my account is active or something else is going on. I was able to add my account yesterday and then our admin change some things to try to enable me to be able to side load my iphone.
2
0
6.1k
Aug ’21
Challenges moving from Visual Studio to XCode...
Hi,I have moved from MS development to OSX-based development and the move from Visual Studio to XCode is doing my head in. 😁I cannot find any logic to how XCode is displaying a source editor window based on how you work in the Project Navigator - can someone please point me to some good explanation which I just cannot find?The most frustrating thing for me is that a single click on a file in the Project Navigator opens the file in the editor - replacing the one you are working on. But even worse is that if you already have that file open in a tab you end up with two tabs editing the same file.Is there a way to stop XCode opening a file when you single click in the Project Navigator?Also, in the preferences there is a setting in Navigation for Primary or Focussed editor. I canot find a definition of the difference between them - and when I change the setting I experience no difference.Finally, all I have find is canned scripted tutorials for the UI and nothing covers my question. Is there an
5
0
4.3k
Feb ’16
IOS Bundle Signing Visual Studio Windows
I am new to xamarin IOS and I couldn't complete automatic provisioning(via IOS Bundle Signing). I am getting the following error, not sure exactly why this error comes out. It says the App ID is not available. But I also don't see it in the developer portal. The exact error is An App ID with Identifier 'com.xxxxx.xx' is not available. Please enter a different string. Can someone help me to fix this out?
0
0
855
Apr ’21
Error Adding Account to Visual Studio 2022
I'm trying to add an Enterprise Apple account with the username and password of my developer account, which has worked once before. Now its giving me the following error: There was an error while trying to log in: No trusted devices or trusted phone numbers are configured for this account. which doesn't make sense because the 2-Factor Auth works when I login to the website. What am I missing? I think the only thing different is I'm using a different Macbook, but should that make a difference? Has anyone else had this error from Visual Studio?
1
0
53
Mar ’25
Visual Studio Ionic App Packaging
I have an Ionic app I've developed using Visual Studio on a Windows machine. I now want to package the app for iOS deployment and I can't get the remote build on the Mac to work to save my life. I've wasted 2.5 days on this problem.My build.json in my app is: ios: { release: { developmentTeam: Team ID ON Developer Apple portal, codeSignIdentity: iOS Distribution, packageType: app-store, provisioningProfile: UUID FROM DOWNLOADED PROVISIONING PROFILE, buildFlag: [ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES, ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO, LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks ] } }I created an iOS distribution certificate using the latest XCODE on my MacInCloud:http://eventhyped.servehttp.com/iOSCapturesForForums/certificate_xcode_capture.jpgHere is the certificate in the developer portal:http://eventhyped.servehttp.com/iOSCapturesForForums/certificate_capture.jpgAnd then in the developer portal, I created Provisioning Profile, then down
1
0
982
Nov ’17
.Net MAUI (Windows & Mac)
What is the step-by-step process to run an iOS application paired with the Mac in my MAUI project? I am using Windows with Visual Studio 2022 V17.13.5. Application: Multiplatform; Language: C#; Framework: MAUI 8; Xcode: 16.2; Objective: Identify and fix the issue to allow the application to run correctly.
Topic: Design SubTopic: General
0
0
111
May ’25
new classes .h .cpp Xcode, translate from Visual Studio
Good morning, I am very beginners student of openFrameworks. I'm following a tutorial trying to create a new class with openFrameworks but I cannot compile it in the right way. This because the tutorial I found in on Visual Studio and i'm working on a Mac with Xcode. This problem is blocking me and I cannot go on with the course. Can someone help me translate the code to create a new class from Visual Studio to Xcode? The language is the same, but the programme in this case is slightly different. On Visual Studio the files are Class.H and Class.Cpp THIS IS CLASS.H VISUAL STUDIO #pragma once #include ofMain.h class ball { public: ball(); void setup (ofVec2f initialPos, ofVec2f initialVel, float rad); void update (); void draw(); ofVec2f pos; ofVec2f vel; ofVec2f radius; }; CLASS.CPP VISUAL STUDIO #include ball.h ball :: ball();{ } void ball :: setup(ofVec2f initialPos, ofVec2f initialVel, float rad); { ofVec2f initialPos;
1
0
778
Aug ’23