gpt4 book ai didi

android - 无法获取 'https://jcenter.bintray.com/com/android/tools/build/gradle/4.0.0/gradle-4.0.0.pom'

转载 作者:行者123 更新时间:2023-12-03 05:22:52 25 4
gpt4 key购买 nike

我尝试了我能想到的一切,但我不断收到这个错误。
这是我的 gradle 构建:

buildscript {
repositories {
jcenter()
maven{ url "https://dl.bintray.com/android/android-tools" }
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.0"
classpath 'com.google.gms.google-services:4.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
mavenCentral()
maven{url 'https://www.google.com/'}
maven { url "https://dl.bintray.com/android/android-tools" }
}
}


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


apply plugin: 'com.android.application'
安卓 {
compileSdkVersion 30
构建工具版本“30.0.0”
defaultConfig {
applicationId "com.example.textbookexhange"
minSdkVersion 16
targetSdkVersion 30
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
我的 gradle 包装器很好
distributionUrl=https://services.gradle.org/distributions/gradle-6.1.1-all.zip

最佳答案

无法解析 4.0 版本的原因是因为 4.0 版本在 JCenter 中不可用。
https://jcenter.bintray.com/com/android/tools/build/gradle/
首先,4.0 版应该在您的 Bintray 包中可用,以便它在 JCenter 中镜像您可以在下面的 bintray 下载链接中检查相同的内容:
https://dl.bintray.com/android/android-tools/com/android/tools/build/gradle/
更新 bintray 包中路径“com/android/tools/build/gradle”下的 4.0 版本,以便在 JCenter 中反射(reflect)出来。

关于android - 无法获取 'https://jcenter.bintray.com/com/android/tools/build/gradle/4.0.0/gradle-4.0.0.pom',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62857267/

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