My application uses RevenueCat 7.0.0, and it does not include the Google Play Billing Library. I received a message from the Play Console stating that it is necessary to have Google Play Billing Library version 6.0.1 or higher. How can I update my project to comply with this requirement? Is it enough to add the following dependency:
def billingVersion = 7.0.0
implementation "com.android.billingclient:billing:$billingVersion"
Do I need to make any additional changes to the code, or can I simply update RevenueCat and add this dependency?