This is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and join us in fostering a supportive community.

All subtopics
Posts under Community topic

Post

Replies

Boosts

Views

Activity

Apple Developer Program Enrollment PROBLEM
Hello, I'm having a serious problem registering for the Apple Developer Program, and I can't resolve it. I applied over two weeks ago, but I still haven't received an activation email. I've also tried using different credit cards, suspecting there might be a problem with my payment method. The main issues are as follows: My order/registration remains in the "processing" status, I haven't received an activation email, Apple Developer Program support isn't responding. I've already sent over seven emails to support, but haven't received any response or updates. Has anyone else encountered a similar situation?
8
4
649
37m
Individual Apple Developer Enrollment Still Pending After Payment
I enrolled in the individual Apple Developer Program last Thursday and completed the payment, but my enrollment status is still showing as “pending.” To avoid any verification issues, I have already updated my Apple ID name to match my passport exactly. It has now been several days without any update or progress. I’m concerned that something may be blocking the verification process. Could someone please help check my enrollment status or advise on what I should do next? I would greatly appreciate any assistance, as the delay is affecting my ability to proceed with development. Thank you in advance.
0
0
6
39m
OS Tahoe 26.5
I face some problems with the following apps after downloading the OS Tahoe 26.5 (my iMac - 24inch,2023/Chip Apple M3/Memory 16GB) Appstore cannot connect to the internet Mail app have connection problem, cannot renew my mailbox as usual remark: will it be possible because I am using a VPN service so that it conflict with the new OS ?
0
0
30
12h
macOS 26, unresponsive and whole screen wide file finder popped up from app
After update macOS to 26, and Xcode to 26, there are issues with file finder popped up from an app, not the file finder of macOS itself. such as: when open Xcode, then click open existing project, or in a opened project, in top file menu, choose add local package dependency, in above cases, the popped out file finder is unresponsive and whole screen wide. However, the file finder of macOS works fine, the issue is in popped up file finder from an app, such as in Xcode, swift playground, trying the locate a file in MacBook. Even in edit this forum post, when I try to add a screen shot, press add image symbol, the popped up file finder is unresponsive and whole screen wide, same issue as in Xcode and swift playground. what is the cause of this issue, and how to correct it?
0
0
33
19h
I shouldn't need to upload a new build just to change app description / keywords
Currently, to update the Description or Keywords, even a minor update (e.g. typo correction or add a single keyword), I need to go through the relatively lengthy process of submitting a new build, even if no changes to the app are required. Submitting a new build shouldn't be required for these superficial field changes since they only affect the storefront presence. Submitted suggestion to Feedback Assistant.
0
0
115
1d
[Bug] macOS 26.5 Beta 3 – All apps report no internet connection while network works in browser
After updating to macOS 26.5 Beta 3, all applications report no internet connection, even though the system is connected and internet works in browsers. App Store shows “No Internet Connection” Other apps (non-browser) also cannot connect to the internet Web browsers (Chrome) work normally Web browsers safari. not work Internet connectivity is confirmed (websites load correctly)
0
0
82
2d
iPadOS – WiFi “incorrect password” but WPA2 PSK is correct – need help interpreting sysdiagnose Join logs
Hi everyone, I’m troubleshooting a WiFi issue affecting some iPads on a WPA2-PSK network with captive portal. Problem: The iPad shows “incorrect password” when connecting to the SSID. The password is correct (validated with multiple devices). Other devices connect normally. After entering the password, the captive portal should appear, but it never does. What we see on the network side (Cisco WLC): Client associates successfully. RADIUS authentication is successful. Failure occurs during the 4-way handshake: Received EAPOL-key M2 with invalid MIC This causes deauthentication, which the iPad reports as “incorrect password”. From the iPad sysdiagnose (Entity_Join file): Entity_2026-04-15_10_23_39.529_Join Entity_2026-04-15_10_23_39.529_Join.csv Questions: Does anyone know how to interpret: reason status subReason values in Entity_Join logs? Specifically: What does reason = -3925 mean? What does reason = 1 mean? What does subreason = 524288 mean? Any insight into these codes or similar experiences would be really helpful. Thanks!
0
0
218
2d
Apple developer is hacking and cyber stalking me
I have a problem. I keep getting harassed by a person who says he works for Apple. I don’t believe I get routed to Apple tech support. I been getting looted out of my Apple ID without me knowing. They say they can see my screen and everything I do plus see me through my camera. I have factory reset my phone 3 times and deleted the eSIM changed my number three times plus made new Apple ID accounts. They send me Apple Store links that aren’t real and they say whenever I click them that I messed up. There are a bunch of fraudulent listings of me in spokeo and people finders that aren’t true but I can tell they’re about me. how do I find out who is doing this and how do I get them to stop
0
1
119
4d
Face ID hardware failure
What could be the possible reasons for my device getting a Face id hardware failure after updating the phone to 26.4.1? I am suspect there could be some failure connections between TrueDepth sensors and front camera. Can anyone try to help me here
0
0
41
4d
Cartões rejeitados / bancões usufruindo do desenvolvimento ——
Problemas com cartoes de crédito onde as operadoras rastreiam e com base …. O Brasil é um país onde organizacoes )) usam e abusam , acesso - cartões bloqueados - inadimplência - trabalho com órgão federal , minha conta , está sendo analisada por fiscais / alguma alternativa que possa colocar cartão de crédito pra não perder meu ( iCloud ) help entre em contato me ajudem como colocar um cartão fiel
5
0
197
5d
LiveCommunicationKit problem
Code: func pushRegistry(_ registry: PKPushRegistry, didReceiveIncomingPushWith payload: PKPushPayload, for type: PKPushType, completion: @escaping () -> Void) { print("📶 收到 VoIP 推送: (payload.dictionaryPayload)") JPUSHService.handleVoipNotification(payload.dictionaryPayload) // 解析来电信息 guard let voipInfo = payload.dictionaryPayload["_j_voip"] as? [String: Any] else { completion() return } let caller = voipInfo["relationship"] as? String ?? "未知来电" apiUserId = "\(voipInfo["apiUserId"] ?? "")" let callUUID = UUID() // 关键:直接调用 reportIncomingCall // 虽然 Task 是异步的,但我们已经用 @preconcurrency 标记了类 // 并且 PushKit 的 completion 会在之后立即调用 self.reportIncomingCall(uuid: callUUID, callerName: caller) // 立即调用 PushKit completion completion() } private func reportIncomingCall(uuid: UUID, callerName: String) { print("========来电了============="); currentCallUUID = uuid isCallNotAnswered = true let handle = Handle( type: .generic, value: callerName, displayName: callerName ) var update = Conversation.Update( localMember: handle, members: [handle], activeRemoteMembers: [handle] ) // 👇 关键:设置通话能力为支持视频和播放铃声 update.capabilities = [.video, .playingTones] // ✅ 修复数据竞争警告 Task { do { try await conversationManager.reportNewIncomingConversation(uuid: uuid, update: update) print("✅ LiveCommunicationKit 来电上报成功") } catch { print("❌ 来电上报失败: \(error.localizedDescription)") } } } When the app is in the background and VoIP messages arrive, the program crashes. The error message is:*** Assertion failure in -[PKPushRegistry _terminateAppIfThereAreUnhandledVoIPPushes], PKPushRegistry.m:349 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Killing app because it never posted an incoming call to the system after receiving a PushKit VoIP push.' *** First throw call stack: (0x18df82044 0x18b419abc 0x18d27d6d0 0x21cff5494 0x107486064 0x10747d19c 0x21cff46fc 0x10746c584 0x107486064 0x1074a6f98 0x10747c548 0x10747c484 0x18ded4b74 0x18de782c4 0x18de79a0c 0x1dad01454 0x1908991a4 0x190864a28 0x10435fa1c 0x1b4965f08) libc++abi: terminating due to uncaught exception of type NSException Debug session ended with code 9: Terminated due to signal 9
0
0
217
6d
Apple Music
I have an IMAC with 5,940 songs on it. I had a one month free subscription to Apple Music that I canceled before the month was over. I can not play most the songs that I had downloaded during that month. That I understand because I no longer have a subscription..BUT i do not understand why my 5,940 songs that I had downloaded 8 years ago are not accessible to me or ARE GONE!!!!! Some of those songs were audio files of my late husband and father. Those we my files. And I have been told that I can get them back if I subscribe to Apple Music . This is outrageous!!!!
0
0
72
6d
Enrollment...well, kind of..
G'day, I noticed a couple days ago on my backup account on my macbook pro 'matt' it has been enrolled via what I am learning is screen share? I do not use screen share, nor does anyone else have access to my icloud.. ~/Documents ❯ sudo profiles list -all 3:05 matt[1] attribute: profileIdentifier: application.store.digital_health_restrictions.application.store There are 1 configuration profiles installed ~/Documents ❯ sudo profiles -P -o stdout-xml 3:05 There are 1 configuration profiles installed
0
0
70
6d
Communication Message[5.0.0 Legal: Preamble]
Dear Developer, We are writing to notify you that the Ministry of Industry and Information Technology (MIIT) has identified your app as in violation of the Regulation on Personal Information in Mobile Apps. If your app is not compliant by April 20, 2026, MIIT will find your app to be illegal in China, and demand that Apple remove it from the China App Store. The App Review Guidelines require apps to comply with all legal requirements in any location where they are offered. Legal Apps must comply with all legal requirements in any location where you make them available (if you’re not sure, check with a lawyer). We know this stuff is complicated, but it is your responsibility to understand and make sure your app conforms with all local laws, not just the guidelines below. And of course, apps that solicit, promote, or encourage criminal or clearly reckless behavior will be rejected. We ask that you refer to the directions included in the document attached to this message. If you have any questions, we advise you to get in touch with MIIT within 24 hours of this notice by submitting your feedback via https://app.caict.ac.cn/. Thank you for your prompt attention to this matter. Best regards, App Review Message Attachments: Directions.docx
0
0
88
6d
Is continuous background GPS tracing during device idle allowed?
We want to implement continuous GPS tracking in a React Native iOS app for security purposes. We need the tracing in the following case scenarios: App is Terminated App is minimised (Not killed) App is open and device is put to sleep mode #Locked App is in minimised and device is put to sleep mode #Locked (sleep mode) Currently it works in following 2 scenarios: Working when the app open in foreground Works when the app is killed (Traces in background) We would like to understand: Is continuous background location tracking during device idle allowed in iOS ? If allowed, what is the recommended approach to ensure reliable tracking? Are there any specific configurations, permissions, or limitations (battery optimization, system restrictions) we should be aware of? We are using React-Native by transistersoft with background location updates enabled and required permissions configured. This use case is specifically for user safety and security tracking. Any guidance on best practices and platform limitations would be helpful.
1
0
177
1w
tvOS 26.5 Animation Glitch
Hi @DTS Engineer 😊 in tvOS 26.5 Beta 2 is still this annoying Shadow Glitch… 😔 I have submitted an Bug-Report, but dont get an Answer… FB20049918 The Animation is not smooth and the Shadow and the Liqud-Glass 3D-Edge is abruptly „jumping“… I don’t get any Response from the Apple Engineers. But this GUI Glitch makes the otherwise very high-quality tvOS GUI appear very unprofessional. Could you please help me? 🤔 Please ask again the Apple Engineers about the current State. Best Regards, Christian 😉
0
0
135
1w
Custom Pricing and Features for Non-Renewing Subscriptions
I hope you are doing well. I am reaching out to inquire about a few aspects of implementing non-renewing subscriptions in our app. Firstly, we have encountered a limitation in App Store Connect where the maximum price tier available for non-renewing subscriptions in Euros is €1199. However, our product is priced at €1799. Could anyone please advise how we can handle this scenario? Is there a way to request custom pricing beyond the available tiers, or is there an alternative approach you would recommend? Additionally, we would like clarification on the following: Promo Codes: Are promo codes supported for each non-renewing subscription product? If so, how can we configure and distribute them? Installment Payments: Is it possible to enable installment-based payments for non-renewing subscriptions? If yes, could you guide us on how to set this up or if there are any prerequisites?
1
0
334
1w
Different app behavior when running on device from Xcode
I have an app I am working on that makes a REST call, updates the UI with the info, and sends a notification. When I run Build and Run my app from Xcode using my iPhone as the destination, it works exactly as I want it to - my REST calls and notifications continue to work when the app is in the background. However, when I run my app that has been installed on my iPhone from the Xcode build/run directly (without Xcode in the picture), it does NOT behave correctly and only works when my app is in the foreground. What am I missing?
6
0
376
1w
Apple Developer Program Enrollment PROBLEM
Hello, I'm having a serious problem registering for the Apple Developer Program, and I can't resolve it. I applied over two weeks ago, but I still haven't received an activation email. I've also tried using different credit cards, suspecting there might be a problem with my payment method. The main issues are as follows: My order/registration remains in the "processing" status, I haven't received an activation email, Apple Developer Program support isn't responding. I've already sent over seven emails to support, but haven't received any response or updates. Has anyone else encountered a similar situation?
Replies
8
Boosts
4
Views
649
Activity
37m
Individual Apple Developer Enrollment Still Pending After Payment
I enrolled in the individual Apple Developer Program last Thursday and completed the payment, but my enrollment status is still showing as “pending.” To avoid any verification issues, I have already updated my Apple ID name to match my passport exactly. It has now been several days without any update or progress. I’m concerned that something may be blocking the verification process. Could someone please help check my enrollment status or advise on what I should do next? I would greatly appreciate any assistance, as the delay is affecting my ability to proceed with development. Thank you in advance.
Replies
0
Boosts
0
Views
6
Activity
39m
OS Tahoe 26.5
I face some problems with the following apps after downloading the OS Tahoe 26.5 (my iMac - 24inch,2023/Chip Apple M3/Memory 16GB) Appstore cannot connect to the internet Mail app have connection problem, cannot renew my mailbox as usual remark: will it be possible because I am using a VPN service so that it conflict with the new OS ?
Replies
0
Boosts
0
Views
30
Activity
12h
macOS 26, unresponsive and whole screen wide file finder popped up from app
After update macOS to 26, and Xcode to 26, there are issues with file finder popped up from an app, not the file finder of macOS itself. such as: when open Xcode, then click open existing project, or in a opened project, in top file menu, choose add local package dependency, in above cases, the popped out file finder is unresponsive and whole screen wide. However, the file finder of macOS works fine, the issue is in popped up file finder from an app, such as in Xcode, swift playground, trying the locate a file in MacBook. Even in edit this forum post, when I try to add a screen shot, press add image symbol, the popped up file finder is unresponsive and whole screen wide, same issue as in Xcode and swift playground. what is the cause of this issue, and how to correct it?
Replies
0
Boosts
0
Views
33
Activity
19h
iOS 26
Hello I was wondering if I could get iOS 26 i tried and I it said my age was uncommon in my reigen
Replies
1
Boosts
0
Views
105
Activity
20h
I shouldn't need to upload a new build just to change app description / keywords
Currently, to update the Description or Keywords, even a minor update (e.g. typo correction or add a single keyword), I need to go through the relatively lengthy process of submitting a new build, even if no changes to the app are required. Submitting a new build shouldn't be required for these superficial field changes since they only affect the storefront presence. Submitted suggestion to Feedback Assistant.
Replies
0
Boosts
0
Views
115
Activity
1d
[Bug] macOS 26.5 Beta 3 – All apps report no internet connection while network works in browser
After updating to macOS 26.5 Beta 3, all applications report no internet connection, even though the system is connected and internet works in browsers. App Store shows “No Internet Connection” Other apps (non-browser) also cannot connect to the internet Web browsers (Chrome) work normally Web browsers safari. not work Internet connectivity is confirmed (websites load correctly)
Replies
0
Boosts
0
Views
82
Activity
2d
iPadOS – WiFi “incorrect password” but WPA2 PSK is correct – need help interpreting sysdiagnose Join logs
Hi everyone, I’m troubleshooting a WiFi issue affecting some iPads on a WPA2-PSK network with captive portal. Problem: The iPad shows “incorrect password” when connecting to the SSID. The password is correct (validated with multiple devices). Other devices connect normally. After entering the password, the captive portal should appear, but it never does. What we see on the network side (Cisco WLC): Client associates successfully. RADIUS authentication is successful. Failure occurs during the 4-way handshake: Received EAPOL-key M2 with invalid MIC This causes deauthentication, which the iPad reports as “incorrect password”. From the iPad sysdiagnose (Entity_Join file): Entity_2026-04-15_10_23_39.529_Join Entity_2026-04-15_10_23_39.529_Join.csv Questions: Does anyone know how to interpret: reason status subReason values in Entity_Join logs? Specifically: What does reason = -3925 mean? What does reason = 1 mean? What does subreason = 524288 mean? Any insight into these codes or similar experiences would be really helpful. Thanks!
Replies
0
Boosts
0
Views
218
Activity
2d
How do we get more information about the delivery status of the AirPods Max and certificate?
I was selected as one of the winners for the recent Swift Student Challenge, and I was wondering if we will get more information regarding the delivery of the AirPods Max 2 and the certificate? Were these already delivered? I haven't received any email about this, so I wanted to ask here.
Replies
0
Boosts
0
Views
272
Activity
3d
Apple developer is hacking and cyber stalking me
I have a problem. I keep getting harassed by a person who says he works for Apple. I don’t believe I get routed to Apple tech support. I been getting looted out of my Apple ID without me knowing. They say they can see my screen and everything I do plus see me through my camera. I have factory reset my phone 3 times and deleted the eSIM changed my number three times plus made new Apple ID accounts. They send me Apple Store links that aren’t real and they say whenever I click them that I messed up. There are a bunch of fraudulent listings of me in spokeo and people finders that aren’t true but I can tell they’re about me. how do I find out who is doing this and how do I get them to stop
Replies
0
Boosts
1
Views
119
Activity
4d
Face ID hardware failure
What could be the possible reasons for my device getting a Face id hardware failure after updating the phone to 26.4.1? I am suspect there could be some failure connections between TrueDepth sensors and front camera. Can anyone try to help me here
Replies
0
Boosts
0
Views
41
Activity
4d
Cartões rejeitados / bancões usufruindo do desenvolvimento ——
Problemas com cartoes de crédito onde as operadoras rastreiam e com base …. O Brasil é um país onde organizacoes )) usam e abusam , acesso - cartões bloqueados - inadimplência - trabalho com órgão federal , minha conta , está sendo analisada por fiscais / alguma alternativa que possa colocar cartão de crédito pra não perder meu ( iCloud ) help entre em contato me ajudem como colocar um cartão fiel
Replies
5
Boosts
0
Views
197
Activity
5d
LiveCommunicationKit problem
Code: func pushRegistry(_ registry: PKPushRegistry, didReceiveIncomingPushWith payload: PKPushPayload, for type: PKPushType, completion: @escaping () -> Void) { print("📶 收到 VoIP 推送: (payload.dictionaryPayload)") JPUSHService.handleVoipNotification(payload.dictionaryPayload) // 解析来电信息 guard let voipInfo = payload.dictionaryPayload["_j_voip"] as? [String: Any] else { completion() return } let caller = voipInfo["relationship"] as? String ?? "未知来电" apiUserId = "\(voipInfo["apiUserId"] ?? "")" let callUUID = UUID() // 关键:直接调用 reportIncomingCall // 虽然 Task 是异步的,但我们已经用 @preconcurrency 标记了类 // 并且 PushKit 的 completion 会在之后立即调用 self.reportIncomingCall(uuid: callUUID, callerName: caller) // 立即调用 PushKit completion completion() } private func reportIncomingCall(uuid: UUID, callerName: String) { print("========来电了============="); currentCallUUID = uuid isCallNotAnswered = true let handle = Handle( type: .generic, value: callerName, displayName: callerName ) var update = Conversation.Update( localMember: handle, members: [handle], activeRemoteMembers: [handle] ) // 👇 关键:设置通话能力为支持视频和播放铃声 update.capabilities = [.video, .playingTones] // ✅ 修复数据竞争警告 Task { do { try await conversationManager.reportNewIncomingConversation(uuid: uuid, update: update) print("✅ LiveCommunicationKit 来电上报成功") } catch { print("❌ 来电上报失败: \(error.localizedDescription)") } } } When the app is in the background and VoIP messages arrive, the program crashes. The error message is:*** Assertion failure in -[PKPushRegistry _terminateAppIfThereAreUnhandledVoIPPushes], PKPushRegistry.m:349 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Killing app because it never posted an incoming call to the system after receiving a PushKit VoIP push.' *** First throw call stack: (0x18df82044 0x18b419abc 0x18d27d6d0 0x21cff5494 0x107486064 0x10747d19c 0x21cff46fc 0x10746c584 0x107486064 0x1074a6f98 0x10747c548 0x10747c484 0x18ded4b74 0x18de782c4 0x18de79a0c 0x1dad01454 0x1908991a4 0x190864a28 0x10435fa1c 0x1b4965f08) libc++abi: terminating due to uncaught exception of type NSException Debug session ended with code 9: Terminated due to signal 9
Replies
0
Boosts
0
Views
217
Activity
6d
Apple Music
I have an IMAC with 5,940 songs on it. I had a one month free subscription to Apple Music that I canceled before the month was over. I can not play most the songs that I had downloaded during that month. That I understand because I no longer have a subscription..BUT i do not understand why my 5,940 songs that I had downloaded 8 years ago are not accessible to me or ARE GONE!!!!! Some of those songs were audio files of my late husband and father. Those we my files. And I have been told that I can get them back if I subscribe to Apple Music . This is outrageous!!!!
Replies
0
Boosts
0
Views
72
Activity
6d
Enrollment...well, kind of..
G'day, I noticed a couple days ago on my backup account on my macbook pro 'matt' it has been enrolled via what I am learning is screen share? I do not use screen share, nor does anyone else have access to my icloud.. ~/Documents ❯ sudo profiles list -all 3:05 matt[1] attribute: profileIdentifier: application.store.digital_health_restrictions.application.store There are 1 configuration profiles installed ~/Documents ❯ sudo profiles -P -o stdout-xml 3:05 There are 1 configuration profiles installed
Replies
0
Boosts
0
Views
70
Activity
6d
Communication Message[5.0.0 Legal: Preamble]
Dear Developer, We are writing to notify you that the Ministry of Industry and Information Technology (MIIT) has identified your app as in violation of the Regulation on Personal Information in Mobile Apps. If your app is not compliant by April 20, 2026, MIIT will find your app to be illegal in China, and demand that Apple remove it from the China App Store. The App Review Guidelines require apps to comply with all legal requirements in any location where they are offered. Legal Apps must comply with all legal requirements in any location where you make them available (if you’re not sure, check with a lawyer). We know this stuff is complicated, but it is your responsibility to understand and make sure your app conforms with all local laws, not just the guidelines below. And of course, apps that solicit, promote, or encourage criminal or clearly reckless behavior will be rejected. We ask that you refer to the directions included in the document attached to this message. If you have any questions, we advise you to get in touch with MIIT within 24 hours of this notice by submitting your feedback via https://app.caict.ac.cn/. Thank you for your prompt attention to this matter. Best regards, App Review Message Attachments: Directions.docx
Replies
0
Boosts
0
Views
88
Activity
6d
Is continuous background GPS tracing during device idle allowed?
We want to implement continuous GPS tracking in a React Native iOS app for security purposes. We need the tracing in the following case scenarios: App is Terminated App is minimised (Not killed) App is open and device is put to sleep mode #Locked App is in minimised and device is put to sleep mode #Locked (sleep mode) Currently it works in following 2 scenarios: Working when the app open in foreground Works when the app is killed (Traces in background) We would like to understand: Is continuous background location tracking during device idle allowed in iOS ? If allowed, what is the recommended approach to ensure reliable tracking? Are there any specific configurations, permissions, or limitations (battery optimization, system restrictions) we should be aware of? We are using React-Native by transistersoft with background location updates enabled and required permissions configured. This use case is specifically for user safety and security tracking. Any guidance on best practices and platform limitations would be helpful.
Replies
1
Boosts
0
Views
177
Activity
1w
tvOS 26.5 Animation Glitch
Hi @DTS Engineer 😊 in tvOS 26.5 Beta 2 is still this annoying Shadow Glitch… 😔 I have submitted an Bug-Report, but dont get an Answer… FB20049918 The Animation is not smooth and the Shadow and the Liqud-Glass 3D-Edge is abruptly „jumping“… I don’t get any Response from the Apple Engineers. But this GUI Glitch makes the otherwise very high-quality tvOS GUI appear very unprofessional. Could you please help me? 🤔 Please ask again the Apple Engineers about the current State. Best Regards, Christian 😉
Replies
0
Boosts
0
Views
135
Activity
1w
Custom Pricing and Features for Non-Renewing Subscriptions
I hope you are doing well. I am reaching out to inquire about a few aspects of implementing non-renewing subscriptions in our app. Firstly, we have encountered a limitation in App Store Connect where the maximum price tier available for non-renewing subscriptions in Euros is €1199. However, our product is priced at €1799. Could anyone please advise how we can handle this scenario? Is there a way to request custom pricing beyond the available tiers, or is there an alternative approach you would recommend? Additionally, we would like clarification on the following: Promo Codes: Are promo codes supported for each non-renewing subscription product? If so, how can we configure and distribute them? Installment Payments: Is it possible to enable installment-based payments for non-renewing subscriptions? If yes, could you guide us on how to set this up or if there are any prerequisites?
Replies
1
Boosts
0
Views
334
Activity
1w
Different app behavior when running on device from Xcode
I have an app I am working on that makes a REST call, updates the UI with the info, and sends a notification. When I run Build and Run my app from Xcode using my iPhone as the destination, it works exactly as I want it to - my REST calls and notifications continue to work when the app is in the background. However, when I run my app that has been installed on my iPhone from the Xcode build/run directly (without Xcode in the picture), it does NOT behave correctly and only works when my app is in the foreground. What am I missing?
Replies
6
Boosts
0
Views
376
Activity
1w