-
Notifications
You must be signed in to change notification settings - Fork 797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Completion on success purchase is not call-backed on iOS 17 simulator #699
Comments
I tried StoreKit2 to purchase the same product and it does the same as this issue (doesn't return the success result and the purchase sheet appears again), so it's most probably the Xcode beta and iOS 17 issue 😕 do {
let products = try await Product.products(for: ["my product ID"])
let result = try await products.first?.purchase()
print(result)
} catch {
print(error.localizedDescription)
} |
Please test with real device |
I confirmed nothing changed on Xcode 15 beta 8 (15A5229m). @monkeyRing I don't have a device that can install iOS 17, so It would be appreciated if you could test it. |
I tested it with the physical device iPhone SE 3rd that iOS 17 public beta 6 installed, and the issue did not reproduce. Feel free to close the issue in case it should be. Thanks. |
I ran into a similar problem and it worked fine using the real machine |
Bug Report
purchaseProduct()
.To Reproduce
purchaseProduct()
Expected behavior
Completion is call-backed when it succeeds in purchasing on iOS 17
Platform Information
The text was updated successfully, but these errors were encountered: