hmmm I have this problem too.. I thought it's just me. I've re-created all certificates and provisioning profiles, removed old ones from keychain, but nothing helped. I tried it first in Xcode 13.1 and later updated to 13.2.1 but still the same problem....
this is how I fixed it:
if #available(iOSApplicationExtension 15.0, *) {
Image(systemName: getIconName(iconId: iconId))
.resizable()
.symbolRenderingMode(.multicolor)
.scaledToFit()
.frame(width: 20)
}
I can confirm that http requests in my app are not working when private relay is on. Sometimes it's not possible to use https connections, especially with third party services. It's crazy(in a bad way) how this feature in iCloud+ affects everything else. There should be at least option for the user, to turn this feature off for specific apps.
hmmm I have this problem too.. I thought it's just me. I've re-created all certificates and provisioning profiles, removed old ones from keychain, but nothing helped. I tried it first in Xcode 13.1 and later updated to 13.2.1 but still the same problem....
this is how I fixed it:
if #available(iOSApplicationExtension 15.0, *) {
Image(systemName: getIconName(iconId: iconId))
.resizable()
.symbolRenderingMode(.multicolor)
.scaledToFit()
.frame(width: 20)
}
I can confirm that http requests in my app are not working when private relay is on. Sometimes it's not possible to use https connections, especially with third party services. It's crazy(in a bad way) how this feature in iCloud+ affects everything else. There should be at least option for the user, to turn this feature off for specific apps.