Search results for

“iPhone 16 pro”

80,716 results found

Post

Replies

Boosts

Views

Activity

ppq.apple.com returning 502 Bad Gateway - Unable to verify developer apps on device
Since this evening (March 10, 2026), I'm unable to launch any developer-signed app on my physical device (iPhone 16 Pro Max, iOS 26.4 beta 23E5223k). The error is: Unable to launch [app] because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. On the device itself, it shows: Unable to Verify App - An internet connection is required to verify the trust of the developer. What I've tried: Created a new Apple Development certificate Deleted and reinstalled the app Restarted the device Tested on both Wi-Fi and cellular Confirmed Developer Mode is enabled Removed all third-party CA certificates from the device Verified the code signature is valid (codesign -dv shows correct Authority chain) The root cause: https://ppq.apple.com is currently returning 502 Bad Gateway. I confirmed this both from my Mac (curl -s -o /dev/null -w %{http_code} https://ppq.apple.com → 502) and from Safari on the device. This affects all developer-signed
141
0
12k
3w
Reply to App submitted for client launch – review timing question
I just wanted to take a moment to sincerely thank you for the assistance and attention provided regarding our recent app submission. We noticed that the situation was quickly investigated after our inquiry on the Developer Forums, and shortly after that our application became available. We truly appreciate the time and effort your team invests in supporting developers and maintaining the quality of the App Store ecosystem. As an independent developer releasing a first application, the professionalism and responsiveness of the App Review and App Store Connect teams make a very positive impression. It is clear how much care goes into ensuring that the platform remains reliable for both developers and users. Thank you again to everyone involved in the review process and for helping make this launch possible. Kind regards, José Rodríguez Developer – CordobaFood App
3w
Can't match the app displayName
I want to localize the app name, user the String Catalog to set en, en-US, en-CA, however, when the phone language is set to English (United States), the app name is displayed in English, while when the phone language is set to French, the app name is displayed in English-United States. However, the base language of the app settings is English. How can I make it right?
0
0
50
3w
The xcode 26.3 project fails to compile after updating
0 0x10109152c __assert_rtn + 252 1 0x101006054 void std::__1::__introsort(ld::Atom const**, ld::Atom const**, ld::AliasAddressOrderer&, std::__1::iterator_traits::difference_type, bool) + 0 2 0x1010059a4 ld::LayoutLinkedImage::assignAtomOffsetsInSection(ld::SectionLayout&, unsigned int, bool) + 680 3 0x10100a724 void dispatchForEach(std::__1::span, unsigned long, ld::LayoutLinkedImage::sortAtomsWithinSections()::$_0)::'lambda'(unsigned long)::operator()(unsigned long) const + 7852 4 0x180818aec _dispatch_client_callout2 + 16 5 0x1808137f8 _dispatch_apply_invoke3 + 336 6 0x180818ad4 _dispatch_client_callout + 16 7 0x180801a60 _dispatch_once_callout + 32 8 0x180812938 _dispatch_apply_invoke + 252 9 0x180818ad4 _dispatch_client_callout + 16 10 0x1808359dc _dispatch_channel_invoke.cold.5 + 32 11 0x18081113c _dispatch_root_queue_drain + 736 12 0x180811784 _dispatch_worker_thread2 + 180 13 0x1809b7e10 _pthread_wqthread + 232 ld snapshot written at /tmp/AIChatDoctor-2026-03-10-1502
1
0
100
3w
Waited Almost a Month, Only to Get Rejected for “Hidden Features” and “Minimum Functionality”
Apple’s review process this time has been incredibly frustrating. My app waited almost a month before it was finally reviewed, and then it was rejected under: Guideline 2.3.1(a) - Hidden Features Apple claimed that the app contains hidden features. Guideline 4.2 - Minimum Functionality Apple claimed that the app provides limited functionality and feels too similar to a web browsing experience. But that does not match my app at all. It is a native social alarm clock app with features including: Alarm scheduling with AlarmKit Real-time voice rooms Live Activities Widgets Siri Shortcuts / App Intents QR code invitation scanning Apple Music custom ringtones Push notifications This is clearly not just a wrapped website. The only WebView usage is for standard settings pages such as Privacy Policy, Terms of Service, and FAQ. What makes it even more frustrating is that now, whether I wait for Apple’s reply or resubmit the app, I have no idea how long it will take. In the past, Apple Developer Support at least offered
4
0
320
3w
iPhone 17 Pro on iOS 26.3 stays unavailable in xcrun devicectl list devices even with Xcode 26.4 beta 2
I am unable to use my iPhone 17 Pro as a run destination in Xcode. The device appears at a low level, but CoreDevice / devicectl keeps reporting it as unavailable. Environment • Mac mini (Apple Silicon) • macOS 26.3 (Build 25D125) • iPhone 17 Pro • iOS 26.3 • Xcode 26.3 (Build 17C529) • Xcode 26.4 beta 2 (Build 17E5170d) Symptoms • The iPhone appears in Finder • On the iPhone, I tapped “Trust This Computer” • Developer Mode is enabled • Apple ID is added in Xcode Accounts • Team is configured in Signing & Capabilities • iOS Platform Support is installed • The device still does not become available as a run destination • Devices and Simulators does not show it in a usable state • xcrun devicectl list devices still shows unavailable Output of xcrun devicectl list devices Failed to load provisioning paramter list due to error: Error Domain=com.apple.dt.CoreDeviceError Code=1002 No provider was found. UserInfo={NSLocalizedDescription=No provider was found.
13
0
461
3w
Reply to Are these features possible to make in an iOS app?
Thanks for the post and good question that is good to explain the privacy policy. Apple enforces a strict security architecture called App Sandboxing, which isolates apps from each other and from the core operating system to protect user privacy. Because of this, Apple does not provide developers with the APIs (application programming interfaces) required to perform any of the tasks you mentioned. Third-party apps have absolutely zero read access to the iOS Messages app database. You cannot read, export, or save a user's SMS or iMessage history. In some cases allows apps to read text messages in only two highly restricted scenarios like an app can act as a spam filter. However, it can only see incoming messages from unknown numbers, and the system does not allow the app to save or export those messages. Just like SMS, the native Phone app's call history is completely locked down. A third-party app cannot read the incoming, outgoing, or missed call logs. Hope this helps. Albert Pascual
  Worldwide De
3w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
From your answer, I realise I was overlooking the obvious: after doing the work in the fast temp directory, I then need to create a second temp directory on the slower destination volume using URL(for: .itemReplacementDirectory…), copy the file across, and then use replaceItemAt from there. Sure, that makes sense. I think this is also one of those cases where the broader context of your app and user base is really a really important factor. Some apps (smaller documents, more consumer focused) should do their best to hide all of these details from the user, as they're not really useful/relevant and they just end up creating noise. Other apps (larger documents, more expert focused) benefit from making this visible to the user, as it lets them understand what's going on both to correct any problems (for example, space loss due to save failures) and take advantage of the data you have for them (for example, failure recovery). So any attempts to use that will continue to fail until the kernel (?) has finished with
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to Restrict app tp be installed on iPhone only
Thank you for your explanation. My app doesn't actually use telephony features so I suppose, I need to remove that and allow it to be installed on iPads. My layout is designed for iPhones that's why I wanted to avoid this. This brings me to a new issue then. When testing it in the Simulator as iPads, the top and bottom of the UI gets cropped off, seemingly sticking to a 9x16 aspect ratio, which is significantly shorter than the phone screens. Is there any way to run on iPads showing the full iPhone screen size?
Topic: App & System Services SubTopic: General Tags:
3w
Are these features possible to make in an iOS app?
Hello, I am wondering if an app that does the following is possible or is impossible due to ios limitations for apps? An app that access all sms messages, and or all phone calls logs? (goal is to save them and not have to filter them manually) An app that control OTHER apps permissions and or read permissions status of all other apps?
2
0
107
3w
TestFlight is unavailable. Try again.
I am a beta tester. I successfully tested an app this week. However, a different app, by a different developer is generating the “TestFlight is unavailable. Try again” error. I have force closed, and then deleted the TF app, and restarted A16 iPad running 26.3.1 iPadOS, then redownloaded to no effect. I have worked with an Apple Senior Support advisor, and found no network, Apple ID problems on my end after troubleshooting for nearly 2 hours. The developer tried emailing me the link - didn’t work. Now, update builds by developer are now showing the same error on other beta testers iPads, - however, one tester can download the app for beta testing on an iPad Pro M4. The app will download to my phone as well as others´ phones, running current update, but not my iPad. I changed my Apple ID password, reset my network, and nothing works.
0
0
62
3w
Reply to ppq.apple.com returning 502 Bad Gateway - Unable to verify developer apps on device
I am having this issue as well. No devices will build the app. 3 different iphones, 3 different computers. Any idea what is going on?
Replies
Boosts
Views
Activity
3w
ppq.apple.com returning 502 Bad Gateway - Unable to verify developer apps on device
Since this evening (March 10, 2026), I'm unable to launch any developer-signed app on my physical device (iPhone 16 Pro Max, iOS 26.4 beta 23E5223k). The error is: Unable to launch [app] because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user. On the device itself, it shows: Unable to Verify App - An internet connection is required to verify the trust of the developer. What I've tried: Created a new Apple Development certificate Deleted and reinstalled the app Restarted the device Tested on both Wi-Fi and cellular Confirmed Developer Mode is enabled Removed all third-party CA certificates from the device Verified the code signature is valid (codesign -dv shows correct Authority chain) The root cause: https://ppq.apple.com is currently returning 502 Bad Gateway. I confirmed this both from my Mac (curl -s -o /dev/null -w %{http_code} https://ppq.apple.com → 502) and from Safari on the device. This affects all developer-signed
Replies
141
Boosts
0
Views
12k
Activity
3w
Reply to App submitted for client launch – review timing question
I just wanted to take a moment to sincerely thank you for the assistance and attention provided regarding our recent app submission. We noticed that the situation was quickly investigated after our inquiry on the Developer Forums, and shortly after that our application became available. We truly appreciate the time and effort your team invests in supporting developers and maintaining the quality of the App Store ecosystem. As an independent developer releasing a first application, the professionalism and responsiveness of the App Review and App Store Connect teams make a very positive impression. It is clear how much care goes into ensuring that the platform remains reliable for both developers and users. Thank you again to everyone involved in the review process and for helping make this launch possible. Kind regards, José Rodríguez Developer – CordobaFood App
Replies
Boosts
Views
Activity
3w
Claude responds "Your request couldn't be completed."
Setup: Xcode 26.3. MacOS Tahoe 26.3.1 Signed in for Coding Intelligence with Claude Pro plan. For the first 3 prompts Claude responded normally. Afterwards it always responds with Your request couldn't be completed.
Replies
2
Boosts
0
Views
105
Activity
3w
Can't match the app displayName
I want to localize the app name, user the String Catalog to set en, en-US, en-CA, however, when the phone language is set to English (United States), the app name is displayed in English, while when the phone language is set to French, the app name is displayed in English-United States. However, the base language of the app settings is English. How can I make it right?
Replies
0
Boosts
0
Views
50
Activity
3w
The xcode 26.3 project fails to compile after updating
0 0x10109152c __assert_rtn + 252 1 0x101006054 void std::__1::__introsort(ld::Atom const**, ld::Atom const**, ld::AliasAddressOrderer&, std::__1::iterator_traits::difference_type, bool) + 0 2 0x1010059a4 ld::LayoutLinkedImage::assignAtomOffsetsInSection(ld::SectionLayout&, unsigned int, bool) + 680 3 0x10100a724 void dispatchForEach(std::__1::span, unsigned long, ld::LayoutLinkedImage::sortAtomsWithinSections()::$_0)::'lambda'(unsigned long)::operator()(unsigned long) const + 7852 4 0x180818aec _dispatch_client_callout2 + 16 5 0x1808137f8 _dispatch_apply_invoke3 + 336 6 0x180818ad4 _dispatch_client_callout + 16 7 0x180801a60 _dispatch_once_callout + 32 8 0x180812938 _dispatch_apply_invoke + 252 9 0x180818ad4 _dispatch_client_callout + 16 10 0x1808359dc _dispatch_channel_invoke.cold.5 + 32 11 0x18081113c _dispatch_root_queue_drain + 736 12 0x180811784 _dispatch_worker_thread2 + 180 13 0x1809b7e10 _pthread_wqthread + 232 ld snapshot written at /tmp/AIChatDoctor-2026-03-10-1502
Replies
1
Boosts
0
Views
100
Activity
3w
Waited Almost a Month, Only to Get Rejected for “Hidden Features” and “Minimum Functionality”
Apple’s review process this time has been incredibly frustrating. My app waited almost a month before it was finally reviewed, and then it was rejected under: Guideline 2.3.1(a) - Hidden Features Apple claimed that the app contains hidden features. Guideline 4.2 - Minimum Functionality Apple claimed that the app provides limited functionality and feels too similar to a web browsing experience. But that does not match my app at all. It is a native social alarm clock app with features including: Alarm scheduling with AlarmKit Real-time voice rooms Live Activities Widgets Siri Shortcuts / App Intents QR code invitation scanning Apple Music custom ringtones Push notifications This is clearly not just a wrapped website. The only WebView usage is for standard settings pages such as Privacy Policy, Terms of Service, and FAQ. What makes it even more frustrating is that now, whether I wait for Apple’s reply or resubmit the app, I have no idea how long it will take. In the past, Apple Developer Support at least offered
Replies
4
Boosts
0
Views
320
Activity
3w
Using iOS App on iPhone 5s with iOS 12.5.8
Objective: Downloading and running an old Swift iOS App on iPhone 5s with iOS 12.5.8. Development System and Tools: Apple macBook, M4 Pro, running macOS Tahoe 26.3.1 (25D2128). Xcode Version 26.3 (17C529)
Replies
1
Boosts
0
Views
61
Activity
3w
iPhone 17 Pro on iOS 26.3 stays unavailable in xcrun devicectl list devices even with Xcode 26.4 beta 2
I am unable to use my iPhone 17 Pro as a run destination in Xcode. The device appears at a low level, but CoreDevice / devicectl keeps reporting it as unavailable. Environment • Mac mini (Apple Silicon) • macOS 26.3 (Build 25D125) • iPhone 17 Pro • iOS 26.3 • Xcode 26.3 (Build 17C529) • Xcode 26.4 beta 2 (Build 17E5170d) Symptoms • The iPhone appears in Finder • On the iPhone, I tapped “Trust This Computer” • Developer Mode is enabled • Apple ID is added in Xcode Accounts • Team is configured in Signing & Capabilities • iOS Platform Support is installed • The device still does not become available as a run destination • Devices and Simulators does not show it in a usable state • xcrun devicectl list devices still shows unavailable Output of xcrun devicectl list devices Failed to load provisioning paramter list due to error: Error Domain=com.apple.dt.CoreDeviceError Code=1002 No provider was found. UserInfo={NSLocalizedDescription=No provider was found.
Replies
13
Boosts
0
Views
461
Activity
3w
Reply to App stuck "In Review" for 20+ days – Is there a queue delay in March 2026?
I am in the exact same boat. My review was expedited well over a week and a half ago and I've still not had any progress. I spoke with someone on the phone at one point who informed me they recently had some processes changes. I can say it certainly feels like the process change was to stop moving apps forward.
Replies
Boosts
Views
Activity
3w
Reply to Are these features possible to make in an iOS app?
Thanks for the post and good question that is good to explain the privacy policy. Apple enforces a strict security architecture called App Sandboxing, which isolates apps from each other and from the core operating system to protect user privacy. Because of this, Apple does not provide developers with the APIs (application programming interfaces) required to perform any of the tasks you mentioned. Third-party apps have absolutely zero read access to the iOS Messages app database. You cannot read, export, or save a user's SMS or iMessage history. In some cases allows apps to read text messages in only two highly restricted scenarios like an app can act as a spam filter. However, it can only see incoming messages from unknown numbers, and the system does not allow the app to save or export those messages. Just like SMS, the native Phone app's call history is completely locked down. A third-party app cannot read the incoming, outgoing, or missed call logs. Hope this helps. Albert Pascual
  Worldwide De
Replies
Boosts
Views
Activity
3w
Reply to FileManager.replaceItemAt(_:withItemAt:) fails sporadically on ubiquitous items
From your answer, I realise I was overlooking the obvious: after doing the work in the fast temp directory, I then need to create a second temp directory on the slower destination volume using URL(for: .itemReplacementDirectory…), copy the file across, and then use replaceItemAt from there. Sure, that makes sense. I think this is also one of those cases where the broader context of your app and user base is really a really important factor. Some apps (smaller documents, more consumer focused) should do their best to hide all of these details from the user, as they're not really useful/relevant and they just end up creating noise. Other apps (larger documents, more expert focused) benefit from making this visible to the user, as it lets them understand what's going on both to correct any problems (for example, space loss due to save failures) and take advantage of the data you have for them (for example, failure recovery). So any attempts to use that will continue to fail until the kernel (?) has finished with
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
3w
Reply to Restrict app tp be installed on iPhone only
Thank you for your explanation. My app doesn't actually use telephony features so I suppose, I need to remove that and allow it to be installed on iPads. My layout is designed for iPhones that's why I wanted to avoid this. This brings me to a new issue then. When testing it in the Simulator as iPads, the top and bottom of the UI gets cropped off, seemingly sticking to a 9x16 aspect ratio, which is significantly shorter than the phone screens. Is there any way to run on iPads showing the full iPhone screen size?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
3w
Are these features possible to make in an iOS app?
Hello, I am wondering if an app that does the following is possible or is impossible due to ios limitations for apps? An app that access all sms messages, and or all phone calls logs? (goal is to save them and not have to filter them manually) An app that control OTHER apps permissions and or read permissions status of all other apps?
Replies
2
Boosts
0
Views
107
Activity
3w
TestFlight is unavailable. Try again.
I am a beta tester. I successfully tested an app this week. However, a different app, by a different developer is generating the “TestFlight is unavailable. Try again” error. I have force closed, and then deleted the TF app, and restarted A16 iPad running 26.3.1 iPadOS, then redownloaded to no effect. I have worked with an Apple Senior Support advisor, and found no network, Apple ID problems on my end after troubleshooting for nearly 2 hours. The developer tried emailing me the link - didn’t work. Now, update builds by developer are now showing the same error on other beta testers iPads, - however, one tester can download the app for beta testing on an iPad Pro M4. The app will download to my phone as well as others´ phones, running current update, but not my iPad. I changed my Apple ID password, reset my network, and nothing works.
Replies
0
Boosts
0
Views
62
Activity
3w