Skip to main content
Question

Getting error "Your app currently uses Play Billing Library version AIDL and must update to at least version 5.2.1"

  • 28 August 2024
  • 1 reply
  • 38 views

I am trying to update my Android app but now getting following error on play store console

 

Your app currently uses Play Billing Library version AIDL and must update to at least version 5.2.1 to make use of the latest monetization features on Google Play

 

And its blocking me to create a release. Today I upgraded revenuecat sdk to 

 

 

```

implementation 'com.revenuecat.purchases:purchases:7.0.0'

```

And I have also added 

```

implementation "com.android.billingclient:billing:7.0.0"

```

 

But Google play console not allowing me to create release. 

 

I am not sure what to do here. would appreciate any help.

 

Thanks 

Update: 

 

I have update following in manifest and it started working 

 

```

<meta-data    android:name="com.google.android.play.billingclient.version"    android:value="7.0.0" />

```