Yep same here π
Post
Replies
Boosts
Views
Activity
@Thomssie @SPEEDCUP I am now getting strange behavior when using more than one product in the SubscriptionStoreView using the product ids, when tapping either button nothing happens and both buttons are tapped! Anyone else having this issue?
@SPEEDCUP @Thomssie I am still gathering information but it seems the Subscription View is still active since the fix π
Just to confirm after 48 hours of deploying the fix suggested my subscriptions are still showing up π
I did submit this via the Feedback Assistant, never heard from anyone provided lots of different screenshots from different users saying it's not working and some say it was (at the time like us all I thought it was regional) and today I went to check the feedback assistant and saw this:
Investigation complete - Unable to diagnose with current information
π€π€―
I can't answer the redeem code questions but regarding:
when provide introductory offers: Free Trial for auto-renewable subscriptions, is user no need to pay if choose to stop the auto-renew during free trial period ?
The user only gets charged when the free trial is up so if they cancel during the free trial they will not be charged
I am also having the same issue this morning and it was all working fine in testing as well as before today and now all I get is subscription currently unable in current storefront
I would love to know if you here back or manage to fix this π€
Might be worth posting some more context as just from this image it would be too hard to tell fully what is needed π
Apple say enrollment can take unto 24 hours, If you havenβt received a membership confirmation within 24 hours of your purchase, contact them. Make sure to include your Enrollment ID with your support request.
Personally I have had no issue with Apple, it can be hit and miss sometimes when submitting an app or contacting them it can be very quick sometimes upto 48 hours in my case.
source: apple.com
Since ZStack stacks views on top of each other you can take advantage of that! Place a Text view on top of NavigationLink and replace Text view in the body of NavigationLink with an EmptyView
List(items, id: \.self) { item in
ZStack(alignment: .leading) {
Text(item.name)
NavigationLink(destination: Text(item.name)) {
EmptyView()
}
.opacity(0.0)
}
}
You could add a link to you settings page.
Link | Apple Docs
Link("View Our Terms of Service",
destination: URL(string: "https://www.example.com/TOS.html")!)
Link("Visit Our Site", destination: URL(string: "https://www.example.com")!)
.environment(\.openURL, OpenURLAction { url in
print("Open \(url)")
return .handled
})
If you are using Subscriptions or In App Purchases you could also display this link on the product page.
Have you tried removing it and re submitting it? π€