I spent a week looking for solution to upgrade/downgrade subscriptions on Android InAppBilling.
There's a reference page about this function: http://developer.android.com/google/play/billing/billing_reference.html
Google said that we could use getBuyIntentToReplaceSkus()
method, but I couldn't found any documentation about that in its signature. I can't also see it in IInAppBillingService.aidl file that Google provided.
Is there any one who may help me?
mService.getBuyIntentToReplaceSkus(5, "package", subs, key, "subs", getResources().getString(R.string.developer_payload));
– Or