Search results for

“A Summary of the WWDC25 Group Lab”

10,700 results found

Post

Replies

Boosts

Views

Activity

Transaction groups with different currencies - Financial Reports
Hi everyone, I just started to get income on the App Store and I'm trying to figure out how the financial reports section works. One thing I can't understand is why do I have 2 sets (groups) of transactions when I browse the report for June 2020. The 1st group says I have income of about 50 CAD (with a set of countries in it if I unfold the group) and 37 sales. The 2nd group right below the first one says I have 4 USD income and 3 sales. Why the currency is different if I chose my account currency as CAD and why the transactions have been split in those groups? Moreover, the 1st group has the following countries : Australia, Canada, China, Europe, Japan, Russia, North And South America. And all those transactions are converted to CAD as I expect. The second group has only Great Britain and Poland and their transactions are converted into USD, why's that?
0
0
310
Jul ’20
QuickLook Extension and App Groups on macOS
Hello, I am trying to use app groups to share preferences between an app and its QuickLook extension (both sandboxed), but I can't understand why it's not working. For testing, I created an empty macOS app project and added a QuickLook Extension, then on both the targets' entitlement files I added the app group domain in the form teamid.test. Last but not least, in the Info.plist file of the QL extension i added some UTIs to have the QL extension called when previewing. In the QL extension's PreviewViewController.swift file I try to save a value like this: func preparePreviewOfFile(at url: URL, completionHandler handler: @escaping (Error?) -> Void) { let defaults=UserDefaults(suiteName: teamid.***) defaults?.set(1, forKey: test) handler(nil) } If I try to run the app and preview a file though, I get this message in the Console: Couldn't write values for keys ( test ) in CFPrefsPlistSource<0x7fb63681cce0> (Domain: teamid.***, User: kCFPreferencesCurrentUser, ByHost: No, Container: (n
0
0
793
Nov ’21
Reply to Sandboxed app extensions connecting to not sandboxed XPC service
It is not going to be sandboxed but rather notarized, so I'm using hardened runtime. Just FYI, I recommend that you use enable the hardened runtime in all your code. While the only place it’s required right now is for notarisation, it’s a good security practice in all situations. My application bundle has now the following structure: That’s a really helpful summary. Thanks! I presume that your login item is actually a Service Management login item, that is, you install it using SMLoginItemSetEnabled. If so, standard practice is to prefix your XPC service name with your Team ID. That will be accessible to your app and your app extensions. If any of the client code is sandboxed, sign it with an app group entitlement that’s a prefix of the XPC service name. For example, if your service name is SKMME9E2Y8.com.example.test703702.service, add an app group ``SKMME9E2Y8.com.example.test703702`. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’22
Reply to P3 Display to XYZ Color Space Conversion
Thanks for your detailed anwswer. It's claried all the issues for me.Also, I was having a problem with OpenGL ES shader code that converted Display P3 colors to/from the Lab and IPT color spaces. In particular, my results did not match the ColorSync Utility when converting Display P3 to/from Lab. Your mention of D50 caused me to use that reference rather than D65 and now my results match. Switching to D50 also corrected the IPT results.Thanks again!
Topic: Media Technologies SubTopic: General Tags:
Feb ’17
Unable set keychain-access-groups with Team​Identifier​Prefix
I want to store SecIdentity in the keychain access group $(TeamIdentifierPrefix)com.apple.networkextensionsharing. But Provisioning profile xxxx doesn't match the entitlements file's value for the keychain-access-groups entitlement. My profile dont have a param name 'TeamIdentifierPrefix'. Please , how can i add the TeamIdentifierPrefix to my profile. And my TeamIdentifier is same as the AppIdentifierPrefix
1
0
994
Aug ’22
Bundle’s name of a helper with a group container
My application uses a group container that shares files between the main application and its helper. The helper is launched by using SMLoginItemSetEnabled. When I switch to xCode 7 and build the project, I get an error :error: Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier. Embedded Binary Bundle Identifier: X2RD457E37.com.myCompany.myHelper Parent App Bundle Identifier: com.myCompany.myAppSo far, the bundle’s name of the helper started with the the group container ID (X2RD457E37). Did this rule change ? I have found no documentation on the subject.I develop in Objective-C but I notice that with Swift the method SMLoginItemSetEnabled is no longer avalaible. I guess it was replaced. But by what?Thanks for any help.
1
0
421
Jul ’15
Text output of the text based on a lab from a CoreMLDataModel
Hello, I have created a data model with Text Classification which contains many garments with the label clothing, technology equipment with the label technology, etc.... . I have inserted it so that when entering for example T-shirt the label clothing is output. But I want it so that when I create an equipment category with the clothing, that it suggests me clothing items, which I add. How do I implement this. In the function you can only usepreditction.label. I program with SwiftUI. func textml() { do { let model = try DataModel_Symbols_Consilia(configuration: .init()) let prediction = try model.prediction(text: addProjectVM.title) addProjectVM.symbol = prediction.label } catch { modelOutput = Something went wrong } } Greetings Janik
3
0
1.2k
Mar ’23
Cannot invite team members to the group.
After inviting people to the developer group, they accept the invites, but the team doesn't show under the account. This caused the developer cannot request the cert from Xcode, and we cannot link the dev cert with the related profile for the developer. Does anyone has this similar issue, and do Apple can have someone help have a check?
3
0
1.4k
Jan ’22
Transaction groups with different currencies - Financial Reports
Hi everyone, I just started to get income on the App Store and I'm trying to figure out how the financial reports section works. One thing I can't understand is why do I have 2 sets (groups) of transactions when I browse the report for June 2020. The 1st group says I have income of about 50 CAD (with a set of countries in it if I unfold the group) and 37 sales. The 2nd group right below the first one says I have 4 USD income and 3 sales. Why the currency is different if I chose my account currency as CAD and why the transactions have been split in those groups? Moreover, the 1st group has the following countries : Australia, Canada, China, Europe, Japan, Russia, North And South America. And all those transactions are converted to CAD as I expect. The second group has only Great Britain and Poland and their transactions are converted into USD, why's that?
Replies
0
Boosts
0
Views
310
Activity
Jul ’20
Share Play / Group Acitivities GDPR
I know that Apple is very aware of privacy concerns. Do Share Play and Group Activities comply with GDPR's legal rules? What kind of servers (e.g. geography) are involved to manage the connection? Thanks Lars
Replies
1
Boosts
0
Views
810
Activity
Feb ’22
QuickLook Extension and App Groups on macOS
Hello, I am trying to use app groups to share preferences between an app and its QuickLook extension (both sandboxed), but I can't understand why it's not working. For testing, I created an empty macOS app project and added a QuickLook Extension, then on both the targets' entitlement files I added the app group domain in the form teamid.test. Last but not least, in the Info.plist file of the QL extension i added some UTIs to have the QL extension called when previewing. In the QL extension's PreviewViewController.swift file I try to save a value like this: func preparePreviewOfFile(at url: URL, completionHandler handler: @escaping (Error?) -> Void) { let defaults=UserDefaults(suiteName: teamid.***) defaults?.set(1, forKey: test) handler(nil) } If I try to run the app and preview a file though, I get this message in the Console: Couldn't write values for keys ( test ) in CFPrefsPlistSource<0x7fb63681cce0> (Domain: teamid.***, User: kCFPreferencesCurrentUser, ByHost: No, Container: (n
Replies
0
Boosts
0
Views
793
Activity
Nov ’21
Can we add "app groups" to iOS loadable plugin
Hi,We can add app-group to Containig application and app-extension to share the data. But is it also possible to add app-group to iOS plugin's entitlements so that it can also have an access to shared container if needed?Thanks and regards,Sanjay
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
278
Activity
Jan ’16
Reply to Sandboxed app extensions connecting to not sandboxed XPC service
It is not going to be sandboxed but rather notarized, so I'm using hardened runtime. Just FYI, I recommend that you use enable the hardened runtime in all your code. While the only place it’s required right now is for notarisation, it’s a good security practice in all situations. My application bundle has now the following structure: That’s a really helpful summary. Thanks! I presume that your login item is actually a Service Management login item, that is, you install it using SMLoginItemSetEnabled. If so, standard practice is to prefix your XPC service name with your Team ID. That will be accessible to your app and your app extensions. If any of the client code is sandboxed, sign it with an app group entitlement that’s a prefix of the XPC service name. For example, if your service name is SKMME9E2Y8.com.example.test703702.service, add an app group ``SKMME9E2Y8.com.example.test703702`. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Apr ’22
Can I limit the number of participants in a Group Activity?
I'd like to know if there is a way to limit the number of participants in a group activity (SharePlay). Looking through the API, I could not find anything regarding limiting or requiring the number of participants.
Replies
1
Boosts
0
Views
1.3k
Activity
Dec ’21
Reply to P3 Display to XYZ Color Space Conversion
Thanks for your detailed anwswer. It's claried all the issues for me.Also, I was having a problem with OpenGL ES shader code that converted Display P3 colors to/from the Lab and IPT color spaces. In particular, my results did not match the ColorSync Utility when converting Display P3 to/from Lab. Your mention of D50 caused me to use that reference rather than D65 and now my results match. Switching to D50 also corrected the IPT results.Thanks again!
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’17
Factory Unlocked iPhone Group Messaging
I Own a Factory Unlocked iPhone 6S Plus running ios 9.3 on MetroPCS and group messaging is not enabled and all the apn settings i have tried nothing has work can someone help me and find a solutions thanks.
Replies
0
Boosts
0
Views
104
Activity
Mar ’16
macOS available window tab groups?
Howdy. I recently discussed the tab feature from within Google Chrome. I absolutely love this feature. This is a long shot, but is there any way to create similar tab groups with the available window icons on mac OS?
Replies
0
Boosts
0
Views
228
Activity
Apr ’21
Exposing locallyInitiated property on group session
When printing a GroupSession object I see that locallyInitiated is included in the print and I would like to update / prepare my UI based on the initiator of the Group Session. Can locallyInitiated be added as a property to the GroupSession object?
Replies
0
Boosts
0
Views
825
Activity
Jul ’21
Unable set keychain-access-groups with Team​Identifier​Prefix
I want to store SecIdentity in the keychain access group $(TeamIdentifierPrefix)com.apple.networkextensionsharing. But Provisioning profile xxxx doesn't match the entitlements file's value for the keychain-access-groups entitlement. My profile dont have a param name 'TeamIdentifierPrefix'. Please , how can i add the TeamIdentifierPrefix to my profile. And my TeamIdentifier is same as the AppIdentifierPrefix
Replies
1
Boosts
0
Views
994
Activity
Aug ’22
Bundle’s name of a helper with a group container
My application uses a group container that shares files between the main application and its helper. The helper is launched by using SMLoginItemSetEnabled. When I switch to xCode 7 and build the project, I get an error :error: Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier. Embedded Binary Bundle Identifier: X2RD457E37.com.myCompany.myHelper Parent App Bundle Identifier: com.myCompany.myAppSo far, the bundle’s name of the helper started with the the group container ID (X2RD457E37). Did this rule change ? I have found no documentation on the subject.I develop in Objective-C but I notice that with Swift the method SMLoginItemSetEnabled is no longer avalaible. I guess it was replaced. But by what?Thanks for any help.
Replies
1
Boosts
0
Views
421
Activity
Jul ’15
Unable to select Internal Groups to the Build
I am able to select the group for external testing, but not internal, and there is no information on what is wrong. I uploaded the build Dec 8, 2022 at 11:38 AM
Replies
0
Boosts
0
Views
524
Activity
Dec ’22
Text output of the text based on a lab from a CoreMLDataModel
Hello, I have created a data model with Text Classification which contains many garments with the label clothing, technology equipment with the label technology, etc.... . I have inserted it so that when entering for example T-shirt the label clothing is output. But I want it so that when I create an equipment category with the clothing, that it suggests me clothing items, which I add. How do I implement this. In the function you can only usepreditction.label. I program with SwiftUI. func textml() { do { let model = try DataModel_Symbols_Consilia(configuration: .init()) let prediction = try model.prediction(text: addProjectVM.title) addProjectVM.symbol = prediction.label } catch { modelOutput = Something went wrong } } Greetings Janik
Replies
3
Boosts
0
Views
1.2k
Activity
Mar ’23
Cannot invite team members to the group.
After inviting people to the developer group, they accept the invites, but the team doesn't show under the account. This caused the developer cannot request the cert from Xcode, and we cannot link the dev cert with the related profile for the developer. Does anyone has this similar issue, and do Apple can have someone help have a check?
Replies
3
Boosts
0
Views
1.4k
Activity
Jan ’22