Search code examples
androidbraintreebraintree-vault

Braintree Drop-in UI: ERROR: Failed to resolve: org.jfrog.cardinalcommerce.gradle:cardinalmobilesdk:2.2.1-2?


enter image description hereI am integrating Braintree Drop-in UI but my project is not getting compiled.. I have used below dependency:-

implementation 'com.braintreepayments.api:drop-in:4.5.0'

Solution

  • Add this in you Project.gradle

    rootProject.allprojects {
        repositories {
            maven {
                url  "https://cardinalcommerce.bintray.com/android"
                credentials {
                    username 'braintree-team-sdk@cardinalcommerce'
                    password '220cc9476025679c4e5c843666c27d97cfb0f951'
                }
            }
        }
    }
    

    You can also read more about this error here

    Hope this will help!