Search results for

Building for iOS Simulator, but the linked and embedded framework ‘XX.framework‘ was built for

186,345 results found

Post

Replies

Boosts

Views

Activity

App alternative icon not working when archieve.
I add the following info in the build settings of my app. Then I also add the icon to my asset. I build the app, it works normally, but I notice that when I changed the icon to 'AppIcon-Defaults', The icon change alert didn't appear. but it succeeds . I uploaded the archive to App Store I got: ITMS-90895: Missing Icon - The Info.plist key CFBundleIcons.CFBundleAlternateIcons contains an entry “AppIcon-Defaults” that references asset “AppIcon-Defaults.” No such asset is present in the asset catalog. Then I use xcrun --sdk iphoneos assetutil --info Assets.car to check the assets inside the archieved app, It have the asset.
3
0
571
1w
Reply to Using the Bloom filter tool to configure a URL filter Error 9
We tried to use the same exact sample project with the same bundle id instead of using our own bundle id now we get this error: mapError unexpected error domain NEVPNConnectionErrorDomainPlugin code 7 Received filter status change: serverSetupIncomplete We tried to follow this guide for the log but https://download.developer.apple.com/iOS/iOS_Logs/VPN_Logging_Instructions.pdf But it doesnt work on this step: . Trigger a sysdiagnose by simultaneously pressing and releasing both volume buttons + Side (or Top) button. Notes: The sysdiagnose is triggered upon button release. On an iPhone you will feel a short vibration when a sysdiagnose is successfully triggered Also I attached the console log here Console log
1w
Why isn’t my app showing up in App Store search results?
I recently released the first version of my app, and it was discoverable via App Store search. After pushing an update with bug fixes and improved keywords/category, the new version went live and showed as “Ready for Sale” within hours. However, since the update, the app no longer appears in App Store search results - even when searched using its exact name. It’s still accessible through the direct link. Any insights or guidance would be greatly appreciated!
2
0
139
1w
Is iOS ASO mainly about optimizing the title subtitle and keyword fields
I have been exploring App Store Optimization and noticed that Apple primarily uses the App Name, Subtitle, and Keyword field as the main text based ranking signals according to official and third party sources. Are these the only factors that truly impact iOS ASO, or do elements like the app description and promotional text indirectly influence visibility, conversion, or ranking updates over time, and how frequently should subtitles and keywords be revised after launch.
2
0
190
1w
TestFlight Beta Contract Missing – ENTITY_UNPROCESSABLE.BETA_CONTRACT_MISSING
Hello, I am unable to use TestFlight for any app (existing or new), while production uploads work normally. All TestFlight actions fail with: ENTITY_UNPROCESSABLE.BETA_CONTRACT_MISSING There are no pending agreements in App Store Connect. This is an older account that previously used TestFlight successfully. This appears to be a missing or detached TestFlight Beta contract on Apple’s backend. Could this be manually reattached or re-provisioned? This is time-sensitive, as I need a TestFlight external testers link to submit an app for an upcoming hackathon. Apple Support case ID (for reference): 102817552619 Thank you.
4
0
193
1w
Unable to transfer app to another account
Among requirements to transfer app there is one called clear all builds and testers and empty all fields under Test Information under TestFlight but it seems there has been an update to appstore internal code as now I simply can't clear any field under Test Information as error pop ups There are one or more errors on page. requiring me to fill them. How do I transfer apps now?
5
0
437
1w
Reply to Menu in the bottom bar flies to the top of the screen
Hello, you’re absolutely right. The same thing is happening to me on iOS 26.2.1 as well. If I tap it quickly while the subview is still loading, the menu shoots up toward the top of the screen. I’ve tried everything, but it’s caused by the time it takes for the view to process. If you disable it for 1 second until the view is fully loaded, it no longer misbehaves. If I put it in a ToolbarItem positioned at .topBarTrailing, no matter how quickly I tap it, it doesn’t behave strangely. Weird
Topic: UI Frameworks SubTopic: SwiftUI
1w
iOS App never gets Bluetooth connection
I am developing an iOS App for a Bluetooth peripheral using SwiftUI with Swift 5 or 6. I have a few past attempts that got so far (connected to a peripheral), and some downloaded examples that connect to peripherals. Lately (last month or so), my current attempt never gets BleManager to start, and every attempt ends at my View that says 'please enable Bluetooth'. The Xcode console is totally blank with no print outputs. Coding Assistant suggested the init() in my @main structure could contain print(App initializing), but even that never prints. Coding Assistant suggests: • Open your project's Info.plist in Xcode. • Make sure UIApplicationSceneManifest is present and configured for SwiftUI, not referencing any storyboard. • Ensure UIMainStoryboardFile is not present (or blank). but there is no info.plist because it is no longer required. Downloaded sample code runs and connects to peripherals, so Bluetooth is working on my iPhone and the Bluetooth device is accessible. My older attempts used to work,
2
0
86
1w
Simulator since XCode update completely broken
Since one of the last updates of XCode, there are two very annoying bugs in the simulator that just don't get fixed. What's going on Apple? You kill my productivity. There is a red bar reading rdar and some numeric string at the top. You can get rid of it by going to Settings -> Developers -> Zoom -> Larger Text (then change it back). Took a while to find that. I have a German laptop with a QWERTZ keyboard layout. Now when I type, it somehow sends keys from an US keyboard to the simulator. Since I don't have the labels, I don't know what the hell I'm typing. Very frustrating. Please fix this.
3
0
97
1w
Reply to Connection drops while using Content Filter & App Proxy Provider
Will definitely file bug for clarification. Actually, I verified for another flow where FilterDataProvider is responding with NEFilterNewFlowVerdict.allow() & TransparentProxyProvider is responding with NO. So both FilterDataProvider & TransparentProxyProvider are not interested in this flow, still we see the log line (NetworkExtension) [com.apple.networkextension:] provider rejected new flow TCP headless_shell[{length = 20, bytes = 0xe69023e655b6065e1a2f94fa508807fa43f6ac8a}] remote: 100.72.0.3:443 interface utun9 posted by NetworkExtension framework. Is this logline faulty or not to be taken at its face value ?? This really causes confusion amongst customers when they are trying to debug any network issues.
1w
Strong Password Suggestion Clears Other Secure Fields
I can't seem to find information on this but this is causing a critical bug where the Strong Password suggestion sheet presents on any secure field (UIKit) and clears the others when closing it. This means the user cannot enter a password when there is a secure confirm password field because switching fields clears the other. This looks to be a recent issue but I can't tell when this was introduced or if this is SDK / OS version related. I am finding it in both Xcode 26.2 and 16.4 when running on device (iOS 26.2.1 and XC 26 simulators). Code to reproduce: class ViewController: UIViewController { override func loadView() { let v = UIStackView() v.axis = .vertical v.layoutMargins = .init(top: 16, left: 16, bottom: 16, right: 16) v.isLayoutMarginsRelativeArrangement = true view = v let t1 = UITextField() t1.textContentType = .username t1.placeholder = Username v.addArrangedSubview(t1) let t2 = UITextField() t2.isSecureTextEntry = true t2.textContentType = .newPassword t2.placeholder = Password
1
0
91
1w