I'm working on integrating subscriptions into a Xamarin Android app. All the examples I can find online specific to Xamarin use the Plugin.InAppBilling
from Montemagno, et al.
This is certainly very convenient, but just for the sake of due dilligence, I want to look at what it would take to directly consume the BillingClient
classes, as described in Google's documentation (for example, here: https://developer.android.com/google/play/billing/billing_java_kotlin).
Strangely, Xamarin documentation shows how to directly consume the iOS billing classes, but not the ones for Android. I thought that the Xamarin.GooglePlayServices
NuGet packages might contain what I need, but I don't see one that seems to directly pertain to billing.
Any pointers would be greatly appreciated.