Search results for

xcode github

94,701 results found

Post

Replies

Boosts

Views

Activity

Entitlement not found
Dears, this is my first ever piece of code on Mac. I wanted to try ShazamKit. I created App Id and enabled App Service ShazamKit. I properly configured my app (a very small test app) with the proper boundle id, Team and entitlements file. I keep receiving this error in the Signing in section: Automatic signing failed Xcode failed to provision this target. Please address the following issues preventing automatic signing from creating a valid profile. Entitlement com.apple.developer.shazamkit not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file I noticed the message is mentioning profile...does it refer to a Profile as in Certificate/Identifiers/Devices/Profiles/Keys/Services option? I did not create any Profile. I just enabled the App Service under Certificates, Identifiers & Profiles=>Identifiers=>Edit your App ID Configuration=>App Services Thx!
1
0
379
2w
Reply to Using Processor Trace on Non-Xcode Built Binary
Kacper, that doesn't seem to be true? At least in macOS 26.2 (25C56) I get the following error if I don't add the entitlement: Processor Trace cannot profile this process without proper permissions. Recovery Suggestion: Either: Add the 'com.apple.security.get-task-allow' entitlement to your binary entitlements file, or Make sure the build setting CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES is enabled when building with Xcode.
2w
Notification Identifier not showing on my profile
Im creating a basic app, needs push notification capability. I have created two profiles (development & distribution), selected my app in Identifiers and checked the PN box to enable it (no need for broadcast). I add the profile to Xcode and it says Provisioning profile New VP App Jan 2026 doesn't include the Push Notifications capability. What am I missing?
1
0
51
2w
Reply to My app is for iPhone only. The reviewers are not reading/getting my messages
Hi thank you for commenting!! @darkpaw I am sure they are seeing the issues on iPad for sure because it was not designed for iPad. I am not negating that. I am just saying I don't want to offer it for iPad right now. (I want to see the iPhone app do well before I decide if it is worth adjusting every little thing for iPad.) You have a choice, right? I chose just iPhone right now. As I said, even App Store Connect indicates that it is just for iPhone. But for some reason, the reviewers were not being passed along that info. Before I was using the message thread to communicate (seemed like it was not getting read). Now I put it in the note box. I am hoping it is finally read. I don't have Xcode. I use Linux + Expo
2w
Reply to DNS Proxy system extension – OSSystemExtensionErrorDomain error 9 “validationFailed” on clean macOS machine
[quote='872931022, Leo_Nagano, /thread/812857?answerId=872931022#872931022, /profile/Leo_Nagano'] this is actually the first time I’m bringing up this NE system extension. [/quote] In that case I recommend that you switch to using Apple Development signing. Using Developer ID for day-to-day development is a bad idea in general, as I explained in that other post, but it causes significant grief in the case of NE system extensions: If you’re using Xcode, you run into the entitlement suffix issue you’ve noticed. For more on that, see Exporting a Developer ID Network Extension. The system requires that Developer ID-signed system extensions be notarised, so you have to notarise your app before each test O-: ps 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. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
macOS Tahoe 26: DFS namespace subfolders return "No route to host" while direct SMB connections work
Environment macOS Tahoe 26.2 (Build 25C56) Also tested with macOS 26.3 Developer Beta - same issue Windows Server 2022 DFS namespace Connection via Tailscale VPN (but also tested with direct network connection) Problem Description When connecting to a Windows Server 2022 DFS namespace from macOS Tahoe, the root namespace connects successfully, but all subfolders appear empty and return either: No route to host Authentication error (alternates inconsistently) Steps to Reproduce Set up a Windows Server 2022 DFS namespace (e.g., domain.comfs) Add DFS folder targets pointing to file servers (e.g., fs02share, fs03share) From macOS Tahoe, connect via Finder: smb://domain.com/fs Root namespace mounts successfully Issue: Subfolders show as empty or return No route to host when accessed What Works Direct SMB connections to individual file servers work perfectly: smb://10.118.0.26/sharename ✓ smb://fs02.domain.com/sharename ✓ Same DFS namespace works from Windows clients Same DFS namespace worked from macOS Sonoma 14.4
2
0
174
2w
Reply to memory leak in dlopen / dlcose, or user error?
Interesting. I decided to focus on LeakTestCtor.c because, frankly, I avoid C++ whenever I can (-: I was able to reproduce the unbounded memory growth you’re seeing. I’m now using Xcode 26.2 on macOS 26.2. I wanted to share some info on how I investigated this, mostly just for the benefit of future folks who stumble across this thread. First up, I ran the program with MallocStackLoggingNoCompact set: % MallocStackLoggingNoCompact=1 ./Test806035 This makes it easier for debugging tools to tell what’s going on. You can learn more about this in the malloc man page. At each did run point I ran leaks to save a memory graph of the process: % mv g1.memorygraph g1.memgraph … In the other window, press Return and wait for the next run to complete … % mv g2.memorygraph g2.memgraph … and so on … I’ve named these gN.memgraph, where g stands for generation. I then diffed these generations using heap: % heap -diffFrom g1.memgraph g2.memgraph … Only showing allocations in (null) that are not in g1.memgraph. … COUNT
2w
Reply to Xcode 26.2 fails building Flutter iOS app – xcode_backend.dart null exception
Thanks for the post. And thank you for providing such a detailed description of your issue, including the exact error message and your environment setup. This is very helpful. Looking at the error and doing some quick research. Please note I do not know anything about Flutter. Unhandled exception: Null check operator used on a null value #0 Context._embedNativeAssets (file:///opt/homebrew/share/flutter/packages/flutter_tools/bin/xcode_backend.dart:341) Command PhaseScriptExecution failed with a nonzero exit code. seems to indicates a problem within Flutter's build script (xcode_backend.dart) when it tries to embed native assets? This type of error often arises when Flutter expects a certain value or environment variable to be present during the Xcode build phase, but it's either missing or null, possibly due to a change in Xcode's build environment or a cached state? You should check with the support resources provided by the 3rd party to get assistance with their software. Unless another de
2w