gpt4 book ai didi

flutter - 从服务器 : Bad Gateway with exo player 收到状态代码 502

转载 作者:行者123 更新时间:2023-12-05 04:38:25 30 4
gpt4 key购买 nike

我收到这个错误

> Could not GET 'https://google.bintray.com/exoplayer/io/flutter/x86_debug/1.0.0-890a5fca2e34db413be624fc83aeea8e61d42ce6/x86_debug-1.0.0-890a5fca2e34db413be624fc83aeea8e61d42ce6.pom'. Received status code 502 from server: Bad Gateway"

我当前的设置

distributionUrl = https://services.gradle.org/distributions/gradle-6.7.1-all.zip
classpath 'com.android.tools.build:gradle:4.1.0'
compileSdkVersion 30
targetSdkVersion 30

最佳答案

由于 bintray.com 停止服务,大多数依赖项已移至 mavenCentral。所以对我有用的是添加 mavenCentral() 您在 android/build.gradle 中定义 google() 的地方。

buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
mavenCentral() <-- Added
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32"
}
}

allprojects {
repositories {
google()
mavenCentral() <-- Added
}
}

关于flutter - 从服务器 : Bad Gateway with exo player 收到状态代码 502,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70608247/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com