繁体   English   中英

无法获取“https://google.bintray.com/.../maven-metadata.xml”。 从服务器收到状态代码 403:禁止访问

[英]Could not GET 'https://google.bintray.com/.../maven-metadata.xml'. Received status code 403 from server: Forbidden

当我尝试构建我的 flutter 应用程序时,我遇到了问题:

无法确定任务“:app:compileDebugJavaWithJavac”的依赖关系。

无法解析配置“:app:debugCompileClasspath”的所有任务依赖性。 无法解析 com.google.android.gms:play-services-location:16.+。 要求:project:app > project:location > 无法列出 com.google.android.gms:play-services-location 的版本。 > 无法从https://google.bintray.com/exoplayer/com/google/android/gms/play-services-location/maven-metadata.xml加载 Maven 元数据。 > 无法获取资源“https://google.bintray.com/exoplayer/com/google/android/gms/play-services-location/maven-metadata.xml”。 > 无法获取“https://google.bintray.com/exoplayer/com/google/android/gms/play-services-location/maven-metadata.xml”。 从服务器收到状态代码 403:禁止访问

我已经尝试了一切但没有任何效果:

1- 我有稳定的互联网连接

2- 我已经尝试更新或降级 com.android.tools.build.gradle 版本

3-我试过清理缓存

4- 我尝试删除所有 firebase 库

5-我用 mavenCentral() 替换了 JCentre()

有我的 android -> build.gradle 文件:

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.2'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的 android build.gradle 文件:

def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
    localPropertiesFile.withReader('UTF-8') { reader ->
        localProperties.load(reader)
    }
}

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
    flutterVersionCode = '1'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
    flutterVersionName = '1.0'
}

apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

android {
    compileSdkVersion 28

    lintOptions {
        disable 'InvalidPackage'
    }

    defaultConfig {
        applicationId "io.bujupah.hestia"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        multiDexEnabled true
    }

    signingConfigs {
        release {
            keyAlias keystoreProperties['keyAlias']
            keyPassword keystoreProperties['keyPassword']
            storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
            storePassword keystoreProperties['storePassword']
        }
    }
    buildTypes {
        release {
            signingConfig signingConfigs.release
        }
    }
}

flutter {
    source '../..'
}

dependencies {
    implementation 'com.google.android.gms:play-services-auth:16.0.1'
    testImplementation'junit:junit:4.12'
    testImplementation 'org.mockito:mockito-core:2.17.0'
    implementation 'com.android.support:multidex:1.0.3'
}

最后我的 flutter 医生结果:

[√] Flutter(频道未知,2.0.0,在 Microsoft Windows [版本 10.0.19042.1052],区域设置 fr-TN)[√] Android 工具链 - 为 Android 设备开发(Android 883830587145)[0.Chrome305871453]为 web 开发 [√] Android Studio(4.0 版)[√] VS Code(1.57.1 版)[√] 已连接设备(可用 3 个)

• 没有发现问题!

在尝试了我在谷歌上找到的所有内容之后。 我花了将近3天的时间。 我终于为我找到了解决方法:

将您的 gradle 升级到最新版本。 android/build.gradle文件中:

我编辑了classpath 'com.android.tools.build.gradle:3.6.3'

classpath 'com.android.tools.build.gradle:4.2.0'


android/gradle/wrapper/gradle-wrapper.properties文件中:

我编辑了distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

我的项目又开始工作了。

原因之一是你输入的Gradle Plugin Version有误,或者类classpath 'com.android.tools.build.gradle:4.1+' (with + ),所以出现问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM