Clarke
05/06/2024, 1:38 PMplay-services-tapandpay:18.3.3
running an android app in android studio.
> 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
dependencies {
implementation("com.google.android.gms:play-services-tapandpay:18.3.3")
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url("file:${project.rootDir}/libs/tapandpay_sdk/")
}
}
}
Does someone knows how solve this ?Vampire
05/06/2024, 4:56 PM