Search results for

A Summary of the WWDC25 Group Lab

10,365 results found

Post

Replies

Boosts

Views

Activity

Single product in Subscription Groups
Hi iPhone Developper,This is Hayto from Tokyo, Japan. I am looking for how to make product without levels into subscription groups.As I am quoting as follows, I found the document which refers that we can make single product. But I can not find how we can set single product without levels into subscription groups or products with same levels.All subscriptions must be part of a group, however you are not required to differentiate them into levels. For example, you can choose to offer a single subscription in-app purchase, or you can choose to offer multiple subscriptions and assign them all to the same level within the group.URL which I quoted is as follows.https://developer.apple.com/library/content/documentation/LanguagesUtilities/Conceptual/iTunesConnectInAppPurchase_Guide/Chapters/CreatingInAppPurchaseProducts.html#//apple_ref/doc/uid/TP40013727-CH3-SW10Could you kindly tell me how to make subscription product into subscription groups and how to make multiple products with same l
2
0
554
Apr ’17
App Groups in Provisioning Profile
I'll preface by saying I am new to MacOS development. I've struggled with this issue for several days and have nowhere else to go for help. My MacOS app is an Electron build. It needs application-groups entitlement for IPC. But the developer portal, when generating the provisioning profile, always appends groups. to the start and I am unable to remove it. This renders my provisioning profile invalid and causes my app to be rejected by Transporter because it is not supposed to start with groups, but with my team identified for MacOS. Maybe I can still use the provisioning profile as is, but I've not found any way to do that. So I'm stuck unable to deliver. Any help with this is appreciated.
1
0
106
Apr ’25
CFPreferencesCopyKeyList for App Group
We use AppGroups to share information between app and extension.I need to get list of keys stored in the defaults. There is a method 'dictionaryRepresentation' which returns all keys and values. I'm worried if retreiving all values shoots up memory.There is a method in Core Foundation that only get's the keys, which I plan to use.CFArrayRef CFPreferencesCopyKeyList(CFStringRef applicationID, CFStringRef userName, CFStringRef hostName);I need help with the arguments.applicationID is the App Group bundle identifier.What should be used foruserName - kCFPreferencesCurrentUser or kCFPreferencesAnyUserhostName - kCFPreferencesCurrentHost or kCFPreferencesAnyHostThanks in advance
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
419
Feb ’19
What about App Groups?
Hello.I ran into a problem when creating Cocoa apps.When i send get-request to my local server - i get next message in console:[User Defaults] Failed to read values in CFPrefsPlistSource<0x6080000e6700> (Domain: com.apple.PowerManagement, User: kCFPreferencesAnyUser, ByHost: Yes, Container: (null)): accessing preferences outside an application's container requires user-preference-read or file-read-data sandbox access, detaching from cfprefsdI try create App Groups in Capabilities. Nothing...How can I fix it?I use Vapor like a web-service.
0
0
430
Feb ’18
Subscription Groups with trials behavior
Hi,Is the following scenario possible with subscription groups:1. Group has two product - premium and business(with trial)2. Usr buys premium3. After a while user changes to business and gets trial for X days4. If he cancels the trial, he stays premium.Questions:1. when upgrading from premium into business , will the user recieve the X days trail?2. After the user cancels the business(within the X days trial), will he automaticly downgraded back into premium?thanks.
0
0
415
Jun ’17
Issue with iOS group entitlements being recognized
I am making an iOS step counting app and I have included a widget in the design. I would like to get the widget to pull data from the main app to display step count etc so I created a bundle id for the widget and have been trying to use a group id to link them together. The group capabilities for both seem to be set up/enabled properly with the same App Groups id, but I've been getting an error in xcode which says, 'Provisioning Profile: BUNDLE_ID doesn't include the com.apple.developer.security.application-groups entitlement.' Try Again But the identifiers do have the App Group id enabled. I have tried automatic signing, manual signing with generated profiles, unchecking and rechecking auto-signing, removing and re-adding the group capability. Creating a new bundle id from scratch, creating a new group id from scratch. Always I get the error. I've really pulled my hair out troubleshooting this and would appreciate support. I'm happy to answer an
1
0
232
Nov ’25
Reply to SwiftUI know when new page from TabView is activated
You can pass in a variable @State private var selectedTab = 0 to the TabView and to the DayViewsTabView(selection: $selectedTab) { DayView(summary: History.shared.today(), tab: $selectedTab).tag(0) DayView(summary: History.shared.thisWeek(), tab: $selectedTab).tag(1) DayView(summary: History.shared.thisMonth(), tab: $selectedTab).tag(2) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’20
App group of free apps
I want to create an app group of free apps. They don't have any inapp purchases, completely free. But App store connect shows me an error: Each app in a free app bundle must offer an auto-renewable subscription that allows the user to subscribe to and access content or services in all apps of the bundle. So I cannot create an app group with free apps?
1
0
264
Oct ’24