Discussions
Identity from Webhooks is not the same as what I have set in the app
Hello there,
Ask to Buy
Hi, I am pretty new to IAP coding and have hit an issue regarding purchasing when the user has Ask to Buy on their device. I am not sure how to work the purchase. I use the following code to make the purchase:
func purchasePro(completion: @escaping (Bool) -> Void) {
Qonversion.purchase("pro") { result, error, cancelled in
guard error == nil else {
completion(false)
return
}
if cancelled {
//cancel
completion(false)
}
else {
print("Purchased Pro Monthly!")
self.setPremVersion(premiumVersionSet: false)
self.setProVersion(proVersionSet: true)
completion(true)
}
}
}
Flutter integration, iOS 13 simulator error. works in iOS 12
I'm guessing I missed some instruction for special consideration in this version of iOS.
Here is my code, in main.dart (My key in place of the x's )
await Qonversion.launch('XXXXXXXXXXXXXXXX',
isObserveMode: false);
When I launch Qonversion with my Flutter app using an iOS 13 simulator I get this error:
Permission empty after creating Subscription and then cancelling it
Hi
I am testing the integration on Android.
After purchase and cancellation the "Premium permission" was correctly received for some time. Status was QProductRenewState.canceled.
Resubscribe not showing in dashboard
Hi
I can run my app, subscribe with auto renewal and I can see the whole cycle of renewals, expiration, retry and cancel. in the Qonversion dashboard. So far so good. However, if I wait until the subscription is cancelled and I resubscribe, the App works as expected, but the new data is not showing in the Qonversion dashboard. Any ideas?
Subscribing for an already subscribed App
Hi. If the users try to subscribe for a subscription that is already active, for instance after re-installing the App (instead of restoring), will they receive a message automatically from the App Store? Will the users be allowed to subscribe twice? Or do I have to check in my code if there is already an active subscription before sending the request to the App Store? Similarly, how do I manage if the user wants to upgrade or downgrade the current subscription? Thanks
Update purchases for iOS
Can you tell me how to update a purchases in iOS?
The steps for Android were here, but I can't find the one for iOS.
https://documentation.qonversion.io/docs/making-purchases#3-update-purchases-android-only
Ios 15 :skadnetwork integration testing
With ios 15, the developers of the app can receive a copy of winning attribution. If a advertsider app doesn’t use an MMP, and want to get the data directly and has done the necessary configuration to receive data from skad, but how this can be tested in a non production environment.
Swift - How to restore a specific purchase
Hello,
Google Play Manage Subscriptions
If a user will resubscribe using google play, I cannot get events from qonversion which is to be expected since the transaction did not happen through qonversion.