This bug is still present in beta 4.
Post
Replies
Boosts
Views
Activity
Following from @macasasa's answer, using a @ViewBuilder and wrapping only the iOS 14 code in AnyView works for me. E.g.
@ViewBuilder
private var textImageView: some View {
if #available(iOS 14.0, *) {
AnyView(Label {
text
} icon: {
image
})
} else {
HStack {
image
text
}
}
}
I’m seeing the same issue, still present on beta 4.
@JimmyCricket do you have a FB number? I really hope this is fixed soon, I’d like to beta test with more users but I’d be hitting the API too often.
I'm getting the same issue. In fact, when I expand the "Current Pricing for New Subscribers" dropdown, only 52 countries are shown (previously I selected "All", so ~175). The subscription is available in all the other countries, but for some reason they are not listed here.
@Andrii Hanets have you had any luck with this issue? I contacted Apple Support and haven’t got a reply yet.
This is causing issues with my experiments and pricing.
Thanks, I’ve also sent Apple dev support an email and am awaiting a response.
I haven't received a reply from Apple yet, but it seems they fixed it for my account. I can now create intro offers and adjust prices for all countries.