Post

Replies

Boosts

Views

Activity

Reply to Your session has expired, please login
I have faced the same issue on Xcode 11.6 with MacOS Big Sur (11.2) I have a remedy for what I need. I only needed to build a project that only supports Xcode 11.6 or a previous version. I build my project on Xcode 11.6 I archived the project on Xcode 11.6 close Xcode 11.6 and open the same project from Xcode 12.4 (Yes I have both Xcode versions installed.) Windows - Organizer on Xcode 12.4 Then continue the distribution wizard without any trouble. I know this is not the answer for all of your situations but hope this will help someone in a similar situation to mine.
Feb ’21
Reply to How to save FamilyActivitySelection in FirebaseFirestore
Hi, you can try saving it to local UserDefaults or you can try to utilize the following solution to store in the FireStore. let encoder = PropertyListEncoder() let decoder = PropertyListDecoder() //When saving selection UserDefaults.standard.set(try? self.encoder.encode(newValue), forKey: DefaultKeys.familyControlSelections) //When retrieving Selection guard let data = UserDefaults.standard.data(forKey: DefaultKeys.familyControlSelections) else { print("====> no data saved in the family controls user defaults") return } if let selections = try? decoder.decode(FamilyActivitySelection.self, from: data){ self.store.shield.applications = selections.applicationTokens.isEmpty ? nil : selections.applicationTokens self.store.shield.applicationCategories = ShieldSettings.ActivityCategoryPolicy.specific(selections.categoryTokens, except: Set()) self.store.shield.webDomains = selections.webDomainTokens }
Dec ’23
Reply to Why I can't see my teams while creating StoreKit Configuration File
I had the same issue, and when I checked on my developer account list (I got multiple developer accounts) in my Xcode -> Settings -> Accounts I could see there is one account has a sign-in issue (the password was changed on the web, but forgot to sign in to Xcode.), I removed it and then StoreKit Configuration Teams populated when I tried it again. So, simply put, check your account section of Xcode settings, all the accounts (if you have multiple) should have been setup correctly.
Jun ’24