Lazaros Papadopoulos
Lazaros Papadopoulos

Reputation: 927

"Resubscribe not available" warning message in Google Play Console

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.

enter image description here

Upvotes: 3

Views: 676

Answers (1)

mgonzalez
mgonzalez

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)

retained apk in google play with version 4.0.76 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:

  1. Prepare a new version in Open Testing
  2. Remove the "retained apk" from the three dots menu.
  3. Publish the version
  4. Repeat same steps for Production
  5. Once the versions were published, the error dissapeared.

This is how my version looks now:

enter image description here

Upvotes: 2

Related Questions