我有以下错误:"无法使用Gradle发行版'https://services.gradle.org/distributions/gradle-4.4-all.zip'执行构建。"
只有当我的gradle文件中有这样的内容时才会出现这种情况:“class path ' com . Android . tools . build:gradle:3 . 1 . 2 '”
如果我把它切换回:“类路径'网站.android.工具.构建:gradle:3.0.1'”
一切又正常了。这是在我今天更新了gradle和android studio之后开始的。
我已经尝试了这个问题的每一个解决方案,但没有任何帮助:gradle错误:无法使用Gradle发行版执行构建
从上面: - 我尝试删除用户文件夹中的.gradle,并重新启动Android Studio(我也在其他几次尝试后重新启动了我的电脑)
-gradle构建成功,我尝试了使缓存无效并重新启动。(我在删除.gradle之前尝试过这个方法,再做一次会有什么不同吗?)
-我试着让格雷尔回家走其他几条路,但都没用。如果我去我的android studio文件夹/gradle,有一个gradle-4.4文件夹,但没有任何以前的版本。。虽然格雷尔有4.4和4.1。
我尝试了以下渐变回家的路径:
C:/程序文件/Android/Android Studio/渐变/渐变-4.4
C:/Users/Joseph/。gradle/wrapper/dists/gradle-4.4-all/9br 9 xq 1 tocpiv 8 o 6 njlyu 5 op 1/gradle-4.4
/usr/local/opt/gradle/libexec/
和路径/到/gradle/libexec/
以及默认包装器。(我现在把它设置为)
我的项目评分:
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
google()
}
dependencies {
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.1'
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
version = '1.0'
ext {
appName = "IdlePortalDefense"
gdxVersion = '1.9.6'
roboVMVersion = '2.3.1'
box2DLightsVersion = '1.4'
ashleyVersion = '1.7.0'
aiVersion = '1.8.0'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
google()
}
}
project(":desktop") {
apply plugin: "java"
dependencies {
implementation project(":core")
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
implementation "com.badlogicgames.gdx:gdx-tools:$gdxVersion"
}
}
project(":android") {
apply plugin: "android"
configurations { natives }
dependencies {
implementation project(":core")
implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86_64"
}
}
project(":ios") {
apply plugin: "java"
apply plugin: "robovm"
dependencies {
implementation project(":core")
implementation "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
implementation "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
implementation "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios"
}
}
project(":core") {
apply plugin: "java"
dependencies {
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
}
}
tasks.eclipse.doLast {
delete ".project"
}
我的毕业生包装:
#Wed Apr 25 00:05:44 EDT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
感谢FF7Squirrelman分享问题的解决方案。对我来说,我已经通过将gradle发行版从gradle-4.4-all.zip升级到gradle-4.7-all.zip解决了这个问题
我遇到的问题是,我可以“建立APK ”,并通过Android Studio在我的手机上运行它。然而,当我生成签名的APK时,我得到了与上面相同的错误。
环顾网络,听起来gradle-4.4上存在导致问题的错误,我已按照F7Squirrelman的建议在下面继续解决问题:
>
更新gradle-wrapper.properties:分布URL=https://services.gradle.org/distributions/gradle-4.7-all.zip
转到文件 -
它将允许项目在4.7级中构建,并最终解决问题。
我在Android Studio中构建项目时遇到了一个问题,几周前它还能正常工作,但当我今天试图运行该项目时,它失败了。下面是我得到的错误消息: org.Gradle.tooling.gradleConnectionException:无法使用分级发行版“http://services.Gradle.org/distributions/gradle-1.7-bin.zip”执行生成。:无法使用分级
我正在尝试使用rust为ios目标制作一个跨平台库。我正在跟随本文(在iOS上构建和部署Rust库)。*注意:我遵循了相同的步骤,我的项目结构看起来也是相同的* 完成代码和项目设置后,最后一步是构建库。当我尝试使用构建库时。它会抛出以下错误: 的库目标 另外,请注意,我只能安装对两个平台的支持。(和)。我认为原因是他们放弃了对32位架构的支持。 因此,当我运行。 它抛出错误: cargo.toml
失败:生成失败,出现异常。 > 错误:任务“:CompileJava”执行失败。 找不到系统Java编译器。确保您已经安装了JDK(而不仅仅是JRE)并将您的JAVA_HOME系统变量配置为指向相应的目录。
我试图在Eclipse IDE中创建新的Gradle项目。但我遇到了以下异常:“org.Gradle.tooling.buildexception:无法使用Gradle发行版'https://services.Gradle.org/distributions/gradle-3.5-bin.zip'运行构建操作。” 谁能帮帮我吗? 提前道谢。
当我尝试编译我的应用程序时,我得到以下错误: 现在我一直在stackoverflow和其他网站上搜索,我不是唯一一个遇到这个问题的人。我尝试了这个解决方案,也重启了几次程序,并完全重新安装了Android Studio。我仍然得到了同样的错误。我还尝试手动从 文件夹,并手动将最新版本的gradle放入该文件夹。 没有任何帮助。还是会出错。
问题内容: 我正在尝试使用Gradle命令行界面构建我的Android应用。我还将 GRADLE_HOME / bin 添加到环境中。首先,我使用gradle init生成了包装,gradlew在我的项目文件夹中。现在,当我使用此包装程序构建我的应用程序( ./gradlew build )或使用其任何功能时,它尝试下载gradle-2.3.zip文件并失败(以下错误消息)。我不明白的是为什么gr