Search results for

Visual Studio Maui IOS

105,651 results found

Post

Replies

Boosts

Views

Activity

Notifications False Sucecss Delivery
We operate a social network application, SportsYou with over 3 million monthly active users and are experiencing significant issues with push notification delivery through APNs. We have a large number of users reporting they are not receiving push notifications. Our infrastructure uses AWS SNS integrated with APNs to deliver notifications. However, AWS CloudWatch consistently reports successful delivery (Success response), even though users confirm they never received the notifications. Because we receive success responses from AWS SNS, our system does not attempt to recreate or refresh the device endpoints. This leaves us unable to detect or recover from these delivery failures automatically. This issue is widespread and inconsistent. It affects users across multiple variables including different iOS versions, different device models, and different versions of our application. We cannot identify a clear pattern that would help us isolate the root cause. With millions of active users, even a small pe
2
0
88
2w
Reply to Custom USB Network Device Driver on iPhone
It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. we do not wish to create a driver visible by the entire system. Well, that certainly simplifies things. For example, it makes an EA-based solution feasible (although the EA-based solution still requires MFi hardware). Are there any APIs that give an application access to a raw USB interface … in userspace? Not on iOS. On macOS you can do this using the I/O Kit API [1]. And on iPadOS you can achieve similar functionality using DriverKit. But iOS has neither of those options. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] You can also do it using the KPI, but that just complicates things unnecessarily.
Topic: App & System Services SubTopic: Drivers Tags:
2w
Publishing an app on the App Store that only works through a corporate VPN
Hi everyone, I’m developing an iOS app that needs to be available on the App Store, but it only works when the user is connected to a corporate VPN (all backend APIs are only reachable inside the company network). I would like to clarify a few points: Is it possible to publish such an app on the public App Store, or will it likely be rejected during App Review because it’s only useful inside a VPN environment? What is the recommended distribution method in this scenario: public App Store, Custom Apps via Apple Business Manager, or Enterprise distribution? Are there any specific requirements or best practices for the App Review process (for example, showing clear error messages when the device is not connected to the VPN)? Thanks in advance for any guidance or experiences!
1
0
142
2w
Reply to Regarding network interface name with dual SIM iPhone
There are two questions here: How do you force a connection to run over a specific interface? How do you identify the correct interface? The answer to the first is straightforward: For Network framework, use the requiredInterface property. For BSD Sockets, using IP_BOUND_IF (IPv4) or IPV6_BOUND_IF (IPv6) socket options. The answer to the second question is trickier. It’s easy to get the interface list and filter it down to just the WWAN interfaces. Distinguishing between WWAN interfaces is hard. iOS doesn’t provide a general mechanism for that. It’s clear that you’re working with a customer who has very specific requirements, and it’s possible that you might be able to craft a solution that’s specific to those requirements. The most obvious solution is for them to change their server so that it’s only available over the sXGP-SIM network. That way there’s no possibility of the traffic ‘leaking’ regardless of what you do in your app. Even if that’s not possible for the real service, you could stand up
Topic: App & System Services SubTopic: General Tags:
2w
Reply to Questions about using App Extension communication with host apps on iOS 26 (Xcode 26)
Hi Quinn, thanks for pointing that out. To clarify, what I actually meant to ask is: Is this feature limited to the combination of Xcode 26 + iOS 26 (since AppExtensionPoint is documented as available starting from iOS 26)? Or can an app built with Xcode 26 also run this feature on earlier iOS versions? Thanks again for your help!
2w
Reply to Questions about using App Extension communication with host apps on iOS 26 (Xcode 26)
I’m gonna start with your first question, for reasons that I hope will be obvious. You wrote: [quote='802846021, herman602, /thread/802846, /profile/herman602'] Can this method described in the article be built with Xcode 26 and run on iOS 26? [/quote] And then: [quote='802846021, herman602, /thread/802846, /profile/herman602'] Or is it restricted to run only on iOS 26 [/quote] Huh? I think one of those 26’s is meant to be a different number. That or I’ve completely misunderstood your point. Please clarify. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
What is the time frame on fixing this issue?
The issue of fixed elements with { bottom: 0 } moving up when scrolling still persists. It seems to be a general issue with the IOS 26 release. It affects other browser too. I tested on browsers such as Safari, Chrome, Firefox, Edge and Bravo. With the exception of Edge, all the others display the behavior. Device: iPhone 15 Pro IOS Version: 26.0.1
1
0
273
2w
Reply to SSO Extension Fails XPC Connection to System Daemon (mach-lookup exception used)
My general advice on this front is to avoid temporary exception entitlements where you can. This is critical for App Store apps, but generally a good idea for products that you directly distribute using Developer ID signing. In this case there’s a standard way for sandboxed programs to use XPC without needing temporary exception entitlements, namely an app group. If you set up an app group, grant your app and your appex access to that group, and then have your daemon publish its named XPC endpoint ‘within’ that group, the sandboxed processes should be able to access that service without the need for a temporary exception entitlement. See App Groups Entitlement for info on how that works. Well, the app certainly will be able to. The situation with the appex is more nuanced, because appexen run in a custom sandbox that doesn’t always align with the standard App Sandbox used by apps. Which is probably the reason why your temporary exception entitlement is failing. I think the app group approach will help here, b
2w
Question Regarding API Access Restrictions for Non-Published (STG) iOS Apps
We have been informed by a third-party subscription tracking service(Adjust) that, due to the following specification of App Store Connect, it is not possible to connect an STG app (a non-published testing app) with their server: Specification: Since Apple’s API only allows access for apps that are already published, it is not possible to enable subscription tracking for iOS apps that are not yet published. Could you please confirm if our understanding of this specification is correct? Additionally, is there any method or recommended approach to verify subscription tracking behavior with an STG (non-published) app before the app is released? Thank you very much for your support.
0
0
27
2w
Reply to Problem with provisioning profile not being applied in Xcode
You tagged your thread with Mac and mentioned that the app “bounces”, which seems like a Dock thing, but you then specifically called out that this is “new IOS provisioning profile”. So I’m a bit confused. What sort of app is this? And if it’s an iOS app, are you trying to run it on your Mac? That is, using the iOS Apps on Mac feature? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Xcode's Coverage is broken since 16.2
The coverage of a lot of modules inside our iOS App, not all of them. it appears to be broken since Xcode 16.2 There are some reports over internet without any fix https://www.reddit.com/r/iOSProgramming/comments/1jnzgxw/tests_coverage_not_visible_on_xcode_162/ there's an error message in the logs: raw profile version mismatch: Profile uses raw profile format version = 8; expected version = 10 Xcode 26 didn't fix the issue as well
1
0
25
2w