当前位置: 首页 > 知识库问答 >
问题:

分级同步问题:无法获得“kotlin-stdlib-jdk8-1.4.30.pom”

燕翔飞
2023-03-14

当“Gradle Sync”运行时,我在Android Studio中得到以下错误:
无法获得'https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.4.30/kotlin-stdlib-jdk8-1.4.30.pom'。从服务器收到状态代码403:禁止禁用Gradle“脱机模式”和同步项目
它下载了几个文件,然后卡在同一个文件kotlin-stdlib-jdk8-1.4.30.pom并显示上面的错误。
我尝试了几个解决方案,比如这里和这里,但没有一个真正解决问题。
既然我只使用Java,为什么Android studio应该关心kotlin,我可以做些什么来避免处理kotlin?
这是Gradle>build.Gradle文件:

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        //classpath "com.android.tools.build:gradle:4.1.3"
        classpath 'com.android.tools.build:gradle:+'
        classpath 'com.google.gms:google-services:4.2.0'

    }
}

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

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

这是app>src>build.gradle文件:

plugins {
    id 'com.android.application'
}

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.example.myapplication_10"
        minSdkVersion 29
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    classpath 'com.android.tools.build:gradle:+'
    classpath 'com.google.gms:google-services:4.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.android.material:material:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

共有1个答案

袁晟
2023-03-14

403禁止通常意味着你从一个受美国制裁的国家连接(例如伊朗)。尝试清理项目,清除Gradle缓存,退出android studio,连接到一个VPN来改变你电脑的IP,打开studio并同步/运行。此外,像Shecan或Begzar这样的服务可能会有所帮助。

 类似资料: