Why is my app not compliant with Google Play Policies ( Telling me to update to CardinalMobileSDK 5.0.5-rc.1)?

39 Views Asked by At

I have an app that has dependency :com.paypal.checkout:android-sdk:0.7.3 This dependancy uses a dependancy: org.jfrog.cardinalcommerce.gradle:cardinalmobilesdk:2.2.7-2

Now, when I upload the app to Google Play, it gives me a warning

Conside upgrading to version 5.0.5-rc.1

The issue is that the latest version of this dependancy is 2.2.7-5. I added this code:

implementation ("com.paypal.checkout:android-sdk:0.7.3") {
        exclude group: "org.jfrog.cardinalcommerce.gradle", module: "cardinalmobilesdk"
    }

implementation("org.jfrog.cardinalcommerce.gradle:cardinalmobilesdk:2.2.7-5")

But, it is still asking me to update to 5.0.5-rc.1. Even though this version does not exist.

Image of Warning

0

There are 0 best solutions below