I 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'
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!