Search results for

Visual Studio Maui IOS

105,639 results found

Post

Replies

Boosts

Views

Activity

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 and xcode version 15_6. The program runs on the android emulator and maccatalyst but does not compile and run on actual device because NewsstandKit is missing from the new Xcode release. I am not using NewsstandKit and not really sure what even does. I think there is something wrong with Xcode version 15_6 as it does not allow a build to go to the iPhone. Version 15 doesn't work either. I tried version 14.3, 15, 15.6 upgraded my iPhone and mac versions and so forth. I have been trying to do one simple task for over a month. Has anybody had this problem? The release notes say that NewsstandKit was removed from 15_6 so why is it still trying to link in?
Sep ’23
Reply to Xamarin.iOS app crashing with error DYLD Library not loaded, mapped file has no cdhash, Code has to be at least ad-hoc signed
I opened a technical support ticket with my Visual Studio account. In working with them they found a bug in Visual Studio. They found that the issue is entirely around the incremental build option. This seems to be broken in Visual Studio 2019 on Windows when deploying to a iPhone connected to the Mac. They could reproduce the exact error in a template project just by enabling incremental builds. Apparently incremental builds work by creating that lib.exe.dylib dynamic library to allow building and loading just the changes so the bug seems to be that the generated incremental library is not being signed correctly. When I disable incremental builds I am able to deploy my app to the iPhone and debug it and a bug report has been submited to fix the issue.
Jul ’21
App Clips using .NET MAUI
We have an iOS App built in .NET MAUI (Multi-platform App UI). This is a web view App. We wish to integrate APP Clips into this App. But we are unable to do it, due to less available resources online on such implementation. We do not wish to share code between .NET MAUI App and App clips We understand it is not possible to add APP Clips without a parent swift/Xcode app. As an alternative solution we were thinking to Create a new APP in APP Store Connect using XCode/swift and integrate app clips to it. This parent app when downloaded by users will only redirect users to our MAIN .NET MAUI app to app store connect. We need to know if such apps will be approved by APPSTORE Connect? Please guide us on this Also please do let us know if you have any other solution to integrate App clips to a .NET MAUI App
1
0
106
Jun ’25
Reply to How would I Activate a window using its Window index on applescript?
It looks like Visual Studio Code doesn't have an AppleScript dictionary, so perhaps use System Events? tell application System Events tell process Code -- selecting window to raise by its title, modify as needed set w to item 1 of (windows whose title is Untitled-1) perform action AXRaise of item 1 of w end tell activate application Visual Studio Code end tell
Jan ’23
How to correctly regenerate expired provisioning profiles and use them in .NET MAUI iOS apps?
I have a .NET MAUI iOS app where its provisioning profiles at first expired a few days ago. So I created new Apple Development and Apple Distribution certificates using an existing certificate signing request created on 19 October 2023 at 11:46 AM, included the new certificates in the expired provisioning profiles, regenerated and downloaded the provisioning profiles. In the bundle signing section of the project properties window of Visual Studio for Mac version 17.6.14 (build 413), I have made the following settings: Configuration: release Platform: any CPU Signing identity is not set to automatic I have selected the correct provisioning profile, but when deploying the app in release mode, the following error message is thrown so the app cannot be deployed to the device: ERROR: Failed to install the app on the device. (com.apple.dt.CoreDeviceError error 3002.) NSURL = file:///Users/intelligenthosting/Desktop/IMA-Attendance-App/maui/maui/bin/Release/net7.0
1
0
900
Oct ’24
Reply to "Unnotarized Developer ID" - Facing issue while code signing my electron application using the apple developer certificates
Hi,Thanks for the reply.Can you help me in how to notarize my application built in visual studio code using electron.js ? I've found many solutions for application built in Xcode over internet but, I couldn't find any solution for application built in Visual studio code using electron.jsIs there any issue with my developer ID due to which I'm getting error as Unnotarized developer ID or the issue is something related to the code ?
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’19
Reply to Only iOS13 and up?
I think Apple developer of Xcode team should learn from Google Android Studio and Microsoft Visual Studio a lot of thing. Android studio allow user select minSDK first , before code template generating is perform. Let see the template project from Google and Microsoft, Template code project between first and last version is almost same.
Dec ’23
Segmentation fault: 11 in Visual Studio Code M1 chip
Hi! Can you help me? #define _CRT_SECURE_NO_WARNINGS #include #include #include struct Farmacie { char *denumire; int nr_angajati; float *salarii; int an_infiintare; }; struct Farmacie initializare(const char *denumire, int nr_angajati, float *salarii, int an_infiintare) { struct Farmacie f; f.nr_angajati = nr_angajati; f.an_infiintare = an_infiintare; f.denumire = malloc((strlen(denumire) + 1) * sizeof(char)); strcpy(f.denumire, denumire); f.salarii = malloc(sizeof(float) * nr_angajati); for (int i = 0; i < nr_angajati; i++) { f.salarii[i] = salarii[i]; } return f; } void afisareFarmacie(struct Farmacie f) { printf(Denumire: %s, infiintata in: %d, f.denumire, f.an_infiintare); printf(, nr. angajati: %d, cu salariile: , f.nr_angajati); for (int i = 0; i < f.nr_angajati; i++) printf(%5.2f, , f.salarii[i]); printf(n); } struct Farmacie copiere(const struct Farmacie f2) { struct Farmacie aux; aux.an_infiintare = f2.an_infiintare; aux.nr_angajati = f2.nr_angajati; aux.denumire = malloc((strlen(f2.denumir
0
0
554
Mar ’23