Received status code 403 from server: Forbidden

在线更新arcgis依赖出现错误
Could not HEAD 'https://esri.bintray.com/arcgis/com/esri/arcgisruntime/arcgis-android/100.9.0/arcgis-android-100.9.0.pom'. Received status code 403 from server: Forbidden
解决办法:

  allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
        maven {
            url 'https://esri.bintray.com/arcgis'
        }
        
    }
}

改成:

maven {
            url 'https://esri.jfrog.io/artifactory/arcgis'
        }

你可能感兴趣的:(Received status code 403 from server: Forbidden)