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.
Post
Replies
Boosts
Views
Activity
I added border width to a stack view in objective C. This is working in iOS 16, but when I tested on 12.5 it is not showing the border. it is giving me "<CATransformLayer: 0x283458b20> - changing property borderWidth in transform-only layer, will have no effect" on my debug log in Xcode. Any suggestions?
Adding, "-ld64" to "Other linker Flags" worked for me too. Thank you all.
I got the same issue. I'm working for several companies only the old once I can see clearly.. but not the new company in the developer.apple.com, even though I can access the Appstore connect without any issue.
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
}
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.
Same issue here.
We are facing the same issue. and that supposed to dismissed and in to closure of the present offer redemption code method. It is only working on close button only. but if there is a big "Open App" button users are going to use it there. Please fix this.