Search results for

“A Summary of the WWDC26 Group Lab”

10,959 results found

Post

Replies

Boosts

Views

Activity

In-app purchase multiple subscription groups
I'm trying to figure out how to proceed with multiple subscription groups with iOS in-app purchase.Suppose I have multiple content providers users can subscribe to, and for each there are different tiers of subscriptions as follows:Provider 1 : Basic, Plus, Premium Provider 2 : Basic, Plus, Premium ... Provider n : Basic, Plus, Premium.My understanding is we do this by creating subscription group and within each subscription groups create Basic, Plus, Premium. Users can upgrade/downgrade plan within the group.My issue is we add/remove content providers all the time, therefore its not scaleable to keep adding new subscription groups every time we have new provider.
0
0
1.4k
Jun ’18
Accessing classes from parent groups - not allowed??
As far as I understand it, Groups in Xcode are simply a way to organize your project's files. However, I have found that classes in groups can't access the classes that aren't in the same group or children of that group. This makes no sense to me. Example: Group A -ClassA Group B -ClassB I want to declare: class ClassA: ClassB but I get the error Cannot find type 'ClassB' in scope However, if I move ClassB into Group A, it works. Is this a bug?
6
0
1.3k
Jan ’22
iOS iMessage Group Message Limitation
Hi, I have iOS 13.6.1 installed and I have a group message that I want to add additional contacts to. The original group message was sent to both iPhone and Android phone users. I Googled how to add additional contacts to a group message in iOS and have found different posts regarding the steps but when I open a group message and touch the I icon, there is no +Add User button to select from. Some have posted that this is because if there are other than iPhone users in a group message, iOS doesn't support adding additional users. Is this true? Even though I have the Send as SMS enabled?
0
0
355
Aug ’20
Apple Appstore Summary Sales Report API updates historical reports without notification
I've had several internal users note that the Summary Sales report API has started to have updates to historical reports. As an example - a subscription quantity might be 1 when the API is queried for 1/15/24, but then if the API is queried and reconciled against itself it might be quantity of 3 when pulled 3/15/24. This only started after 1/1/24, so I am wondering if there was a change to the report logic, or a new policy that Apple has started to allow that is making backdated changes to the summary sales report. This is causing a lot of potential missed revenue and manual effort for our accounting teams. Is there any guidance that Apple team or others can provide on this topic?
2
0
754
Jun ’24
App Groups - Code sign problem
Hello,I am working on app, and widget for client. Everthing works fine, but issue is that I need to sign .ipa manually, since I don't have access to the client developer account. I have valid AdHoc and Distribution profiles, with proper app group, but when I create .ipa with that profiles widget is not working (works fine with my personal account). Both app and extensions have same group, and everything works fine when automatically signing is set .App group is marked with red in xcode. I checked profile and there is app group capabilitie, and it is same as set in project.Is there any possibility that manually signing for app groups is not working in xcode? And is there any solution, since getting access to client account is not a option?Tnx
1
0
2.3k
Aug ’18
Is Application group or some other ...
In the last post I mentioned that I was having trouble updating the SimpleFirewall example builds and run again. That was my lack of knowlege. The DriverKit and System Extension PDF has the steps to get this going...What is/are the best way to expose tcp socket level IPC ( unix socket ) between APP-ONE and APP-TWO. Only one APP has the system extension embedded in it ( just like the way SimpleFirewall project ).Since I have old style commandline daemon that needs to talk to SystemExension directly, I created a swift based tcp server side based on GCD dispatch mechanism. Console log seems like it is on listen mode. But any client outside this App Bundle can not connect to it. All local address. CONNECTION REFUSED is the message on the client side.How to go about this ???Thanks,Prokashhttps://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-group
0
0
572
Aug ’19
Reply to Confused about App Intents integration in iOS27
Thanks for the post. I guess you already wanted the WWDC26 video for AppIntents. If you only have text and you want to get that text to Siri may I recommend the .notes appIntent? If you thinking about something like that. @AppIntent(schema: .notes.createNote) https://developer.apple.com/videos/play/wwdc2026/240/ Looking forward to see what you come out with. Albert  WWDR
3d
Group Subscriptions behavior at time of renewal
I haven't yet found documentation that describes the behavior of the group or organization subscriptions at the time of renewal. Here are some examples. For Apple's scenario, a run club, say a coach orders a subscription for 'the team'. The app does seasonal (3 month) and annual (yearly) passes. One could collect group dues outside of the app store and help make the purchase. What happens at time of renewal? Does the person that made the original purchase have to manage that? How do they add or remove subscription users as club members may change? How about refunds? In another scenario, B2B, either education or enterprise. With Apple Business providing a free basic MDM (Business Essentials), I can see a lot more use for this case. The same questions apply. Maybe it is a productivity app for students or employees. The video described there being 'seats' that one could assign in Apple Business the say way that apps are assigned (and removed). What happens at the time of renewal? How about refu
1
0
91
1w
In-app purchase multiple subscription groups
I'm trying to figure out how to proceed with multiple subscription groups with iOS in-app purchase.Suppose I have multiple content providers users can subscribe to, and for each there are different tiers of subscriptions as follows:Provider 1 : Basic, Plus, Premium Provider 2 : Basic, Plus, Premium ... Provider n : Basic, Plus, Premium.My understanding is we do this by creating subscription group and within each subscription groups create Basic, Plus, Premium. Users can upgrade/downgrade plan within the group.My issue is we add/remove content providers all the time, therefore its not scaleable to keep adding new subscription groups every time we have new provider.
Replies
0
Boosts
0
Views
1.4k
Activity
Jun ’18
Inn App Phurcase subscription group
My problem is with empty subscription groups. I am using 1 in-app purchase.I deleted in-app purchases that I previously created and did not use, but I cannot delete their groups. Apple asks me to delete these groups. Please help me
Replies
0
Boosts
0
Views
563
Activity
Apr ’21
Can't add Tester group to new build it shows + sign but at popup can't select any group/tester
i uploaded a new build it shows at testflight but i can't assign tester in group section if i press on + sign it shows the group but can't check/select it
Replies
0
Boosts
0
Views
779
Activity
Dec ’22
Reply to A case against TN3135 WatchOS restrictions (NWPathMonitor)
You can make a lab appointment request here: https://developer.apple.com/wwdc24/consultations/dashboard/7Z7LKLYBHD/dashboard
Replies
Boosts
Views
Activity
Jun ’24
Reply to WWDC no mention of roomplan. Abandoned?
Hey @Jermi, I recommend that you sign up for the upcoming Object Capture and RoomPlan lab! -- Greg
Topic: Spatial Computing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to CarPlay 1-on-1 lab
1-on-1 Lab has been set up for 11:30PT. Hope you can make it!
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’20
Accessing classes from parent groups - not allowed??
As far as I understand it, Groups in Xcode are simply a way to organize your project's files. However, I have found that classes in groups can't access the classes that aren't in the same group or children of that group. This makes no sense to me. Example: Group A -ClassA Group B -ClassB I want to declare: class ClassA: ClassB but I get the error Cannot find type 'ClassB' in scope However, if I move ClassB into Group A, it works. Is this a bug?
Replies
6
Boosts
0
Views
1.3k
Activity
Jan ’22
iOS iMessage Group Message Limitation
Hi, I have iOS 13.6.1 installed and I have a group message that I want to add additional contacts to. The original group message was sent to both iPhone and Android phone users. I Googled how to add additional contacts to a group message in iOS and have found different posts regarding the steps but when I open a group message and touch the I icon, there is no +Add User button to select from. Some have posted that this is because if there are other than iPhone users in a group message, iOS doesn't support adding additional users. Is this true? Even though I have the Send as SMS enabled?
Replies
0
Boosts
0
Views
355
Activity
Aug ’20
Apple Appstore Summary Sales Report API updates historical reports without notification
I've had several internal users note that the Summary Sales report API has started to have updates to historical reports. As an example - a subscription quantity might be 1 when the API is queried for 1/15/24, but then if the API is queried and reconciled against itself it might be quantity of 3 when pulled 3/15/24. This only started after 1/1/24, so I am wondering if there was a change to the report logic, or a new policy that Apple has started to allow that is making backdated changes to the summary sales report. This is causing a lot of potential missed revenue and manual effort for our accounting teams. Is there any guidance that Apple team or others can provide on this topic?
Replies
2
Boosts
0
Views
754
Activity
Jun ’24
App Groups - Code sign problem
Hello,I am working on app, and widget for client. Everthing works fine, but issue is that I need to sign .ipa manually, since I don't have access to the client developer account. I have valid AdHoc and Distribution profiles, with proper app group, but when I create .ipa with that profiles widget is not working (works fine with my personal account). Both app and extensions have same group, and everything works fine when automatically signing is set .App group is marked with red in xcode. I checked profile and there is app group capabilitie, and it is same as set in project.Is there any possibility that manually signing for app groups is not working in xcode? And is there any solution, since getting access to client account is not a option?Tnx
Replies
1
Boosts
0
Views
2.3k
Activity
Aug ’18
Is Application group or some other ...
In the last post I mentioned that I was having trouble updating the SimpleFirewall example builds and run again. That was my lack of knowlege. The DriverKit and System Extension PDF has the steps to get this going...What is/are the best way to expose tcp socket level IPC ( unix socket ) between APP-ONE and APP-TWO. Only one APP has the system extension embedded in it ( just like the way SimpleFirewall project ).Since I have old style commandline daemon that needs to talk to SystemExension directly, I created a swift based tcp server side based on GCD dispatch mechanism. Console log seems like it is on listen mode. But any client outside this App Bundle can not connect to it. All local address. CONNECTION REFUSED is the message on the client side.How to go about this ???Thanks,Prokashhttps://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-group
Replies
0
Boosts
0
Views
572
Activity
Aug ’19
Error creating app group ID
When I try to create an app group ID, I get the following error. What does this mean and how do I get around this or fix it?There were errors in the data supplied. Please correct and re-submit.An Application Group with Identifier 'group.us.gnolaum.Payments' is not available. Please enter a different string.
Replies
0
Boosts
0
Views
973
Activity
Sep ’18
Reply to Confused about App Intents integration in iOS27
Thanks for the post. I guess you already wanted the WWDC26 video for AppIntents. If you only have text and you want to get that text to Siri may I recommend the .notes appIntent? If you thinking about something like that. @AppIntent(schema: .notes.createNote) https://developer.apple.com/videos/play/wwdc2026/240/ Looking forward to see what you come out with. Albert  WWDR
Replies
Boosts
Views
Activity
3d
how to create group using a few users phone numbers allowing them to share things with each other within the group?
Im making an app in which users create a group using their phone numbers. How can my app use those phone numbers to create a group?
Replies
0
Boosts
0
Views
116
Activity
Aug ’15
Group Subscriptions behavior at time of renewal
I haven't yet found documentation that describes the behavior of the group or organization subscriptions at the time of renewal. Here are some examples. For Apple's scenario, a run club, say a coach orders a subscription for 'the team'. The app does seasonal (3 month) and annual (yearly) passes. One could collect group dues outside of the app store and help make the purchase. What happens at time of renewal? Does the person that made the original purchase have to manage that? How do they add or remove subscription users as club members may change? How about refunds? In another scenario, B2B, either education or enterprise. With Apple Business providing a free basic MDM (Business Essentials), I can see a lot more use for this case. The same questions apply. Maybe it is a productivity app for students or employees. The video described there being 'seats' that one could assign in Apple Business the say way that apps are assigned (and removed). What happens at the time of renewal? How about refu
Replies
1
Boosts
0
Views
91
Activity
1w