Hello there, I am getting this error using `play-s...
# gradle
c
Hello there, I am getting this error using
play-services-tapandpay:18.3.3
running an android app in android studio.
Copy code
> Could not resolve com.google.android.gms:play-services-tapandpay:18.3.3.
     Required by:
         project :cards
      > Could not resolve com.google.android.gms:play-services-tapandpay:18.3.3.
         > Could not get resource '<https://s3-us-west-2.amazonaws.com/si-mobile-sdks/android/com/google/android/gms/play-services-tapandpay/18.3.3/play-services-tapandpay-18.3.3.pom>'.
            > Could not GET '<https://s3-us-west-2.amazonaws.com/si-mobile-sdks/android/com/google/android/gms/play-services-tapandpay/18.3.3/play-services-tapandpay-18.3.3.pom>'. Received status code 403 from server: Forbidden
I've added this as the documentation said
Copy code
dependencies {
    implementation("com.google.android.gms:play-services-tapandpay:18.3.3")
}
Copy code
allprojects {
    repositories {
        google()
        mavenCentral()
        
        maven {
            url("file:${project.rootDir}/libs/tapandpay_sdk/")
        }
    }
}
Does someone knows how solve this ?
v
There's another repository than those you showed and that repository is either missing authentication information or is misbehaving, returning 403. If the repository is not missing auth data but misbehaving but you need it, you could use inclusive or exclusive repository content filters to control which libraries are resolved from that repository.
thank you color 1
165 Views