We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is the Kotlin code for retrieve the products info: SkuDetailsParams.newBuilder().setSkusList(skuList).setType(BillingClient.SkuType.SUBS).build()
SkuDetailsParams.newBuilder().setSkusList(skuList).setType(BillingClient.SkuType.SUBS).build()
As you can see you need to setType SUBS/INAPP .
How do you handle this in your plugin?
Your exampe is working only on INAPP and fails on SUBS because return an empty List, native code works fine.
Do you think that someone can fix this ?
The text was updated successfully, but these errors were encountered:
We have specialized methods for subs:
https://github.com/NativeScript/payments/blob/main/packages/payments/index.d.ts#L18-L20
https://github.com/NativeScript/payments/blob/main/packages/payments/index.android.ts#L111-L117
Sorry, something went wrong.
fetchSubscriptions
startSubscription
No branches or pull requests
This is the Kotlin code for retrieve the products info:
SkuDetailsParams.newBuilder().setSkusList(skuList).setType(BillingClient.SkuType.SUBS).build()
As you can see you need to setType SUBS/INAPP .
How do you handle this in your plugin?
Your exampe is working only on INAPP and fails on SUBS because return an empty List, native code works fine.
Do you think that someone can fix this ?
The text was updated successfully, but these errors were encountered: