当“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'
}
403禁止通常意味着你从一个受美国制裁的国家连接(例如伊朗)。尝试清理项目,清除Gradle缓存,退出android studio,连接到一个VPN来改变你电脑的IP,打开studio并同步/运行。此外,像Shecan或Begzar这样的服务可能会有所帮助。
我得到以下错误在Android Studio当Gradle同步是在行动: 无法获得https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.4.30/kotlin-stdlib-jdk8-1.4.30.pom。收到状态代码403从服务器:禁止禁用Gradle脱机模式和同步项目 它下载几个文件,然后卡在同一个文件并显示
操作系统:Windows 10 x64 离子:4.12.0 科尔多瓦:8.1.2 分级:4.10.1 我还在[project_name]\platforms\android中创建了一个gradle.properties文件,在该文件中我为代理指定了http和https设置。和我在gradle-wrapper.properties文件中所做的一样。 ionic-v1构建[11:26:25]调用sas
这是我的build.gradle文件 而且,我的文件也如下所示:
在尝试导入我的Cordova android项目到android studio时,我遇到以下错误,如何纠正这个问题 找不到org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.60-eap-25。
更新:“我下载了这个文件kotlin-gradle-plugin-1.3.72.pom,但我不知道我可以把它保存在哪里?”