Reputation: 927
I had been using the AIDL IabHelper classes for billing subscriptions in my app for years. Now, even though I have implemented the Google Play Billing Library 3.0 in the production .apk, I am still getting this warning in the Google Play Console. Any suggestions?
implementation 'com.android.billingclient:billing:3.0.0'
Resubscribe is not currently available for your users because your app does not use Billing Library 2.0 in all active APKs.
Upvotes: 3
Views: 676
Reputation: 116
I found my issue.
I had a version that included a "Retained app bundle and APK" in both Production and Open Testing channels (see screenshot)
Version 4.0.76 was including an older version of Google Play Billing Library and this was the reason why I had the error.
The steps for me were:
This is how my version looks now:
Upvotes: 2