0

While upgrading the billing library shall I need to remove the InAppBillingServices?

How can I test the app billing? Does the static test sku ids are enough to check the subscriptions in the v4 of billing library?

sejn
  • 2,040
  • 6
  • 28
  • 82
  • Did you read the [migration guide](https://developer.android.com/google/play/billing/migrate)? – ianhanniballake Sep 08 '21 at 04:31
  • Yes, I removed that vending. Stll I see the inappbillingservies – sejn Sep 08 '21 at 05:40
  • @ianhanniballake In the guide, it mentioned need to delete the permissions and IabHelper files. Shall i need to delete the .aidl file (InAppBillingService.aidl) file in the app? – sejn Sep 13 '21 at 06:37
  • I have used private IInAppBillingService mBillingService; used as mBillingService = IInAppBillingService.Stub.asInterface(service); How it will be changed. onServiceConnected(ComponentName name, IBinder service) now it will be BillingResult. – sejn Sep 13 '21 at 06:44

1 Answers1

0

here is the tutorial for google play billing library v4. https://medium.com/@alimehdipk/implementing-google-play-billing-library-v4-for-in-app-and-subscriptions-f4bc74c58ed0

Ali Mehdi
  • 85
  • 1
  • 8