赞
踩
Exception in thread "main" java.io.IOException: Downloading from https://services.gradle.org/distributions/gradle-8.6-bin.zip failed: timeout
解决方案:
Android Studio项目gradle下载慢问题_android studio下载依赖慢-CSDN博客
Current Gradle version: 8.6
Required Gradle version: 6.8
FAILURE: Build failed with an exception.
* Where:
Build file 'E:\zxqk\build.gradle.kts' line: 2
* What went wrong:
Plugin [id: 'com.android.application', version: '8.4.0', apply: false] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'com.android.application:com.android.application.gradle.plugin:8.4.0')
Searched in the following repositories:
Gradle Central Plugin Repository
maven(https://jitpack.io)
maven2(https://maven.aliyun.com/repository/gradle-plugin)
maven3(https://maven.aliyun.com/repository/public)
maven4(https://repo1.maven.org/maven2/)
maven5(https://oss.sonatype.org/content/repositories/public)
MavenRepo(https://maven.aliyun.com/repository/central)
Google(https://maven.aliyun.com/repository/google)
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
BUILD FAILED in 6s
解决方案:
A problem occurred configuring root project 'zxqk'.
> Could not resolve all files for configuration ':classpath'.
> Could not find j2objc-annotations-2.8.jar (com.google.j2objc:j2objc-annotations:2.8).
Searched in the following locations:
https://maven.aliyun.com/repository/jcenter/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar
> Could not find animal-sniffer-annotations-1.23.jar (org.codehaus.mojo:animal-sniffer-annotations:1.23).
Searched in the following locations:
https://maven.aliyun.com/repository/jcenter/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
解决方案:
访问
解决方案:
Could not get resource '
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/4.0.1/gradle-4.0.1.pom
1. 设置 阿里云仓库地址
- buildscript {
- repositories {
- google() // 保持Google Maven仓库
- // 添加阿里云的Google仓库镜像
- maven { url 'https://maven.aliyun.com/repository/google' }
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.0.1'
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
-
- allprojects {
- repositories {
- google() // 在所有项目中也保持Google Maven仓库
- mavenCentral() // 保持Maven Central仓库
- // 同样添加阿里云的Google仓库镜像
- maven { url 'https://maven.aliyun.com/repository/google' }
- }
- }

2。查看
是否被设置了代理
把 代理去掉。
Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.70/kotlin-gradle-plugin-1.3.70.pom
- https://maven.aliyun.com/repository/google/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.70/kotlin-gradle-plugin-1.3.70.pom
Required by:
project :
解决方案 :
Kotlin版本迭代较快,可能该版本已被新的版本替代或者从仓库中移除。访问Kotlin官网查看发布的Kotlin版本历史,选取一个合适的版本替换
在 build.gradle 文件中设置
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
ould not get unknown property 'unityStreamingAssets' for object of type com.android.build.gradle.in
解决方案
unityStreamingAssets=.unity3d, google-services-desktop.json, google-services.json, GoogleService-Info.plist
Installed Build Tools revision 34.0.0 is corrupted. Remove and install again using the SDK Manager.
解决方案:
2022年最优解决方案Installed Build Tools revision 31.0.0 is corrupted_build-tools31-CSDN博客
Android Studio 下载文件归档 | Android Developers
并把 Unity 导出的项目 使用 Android Studio 打开
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
-
- buildscript {
- ext.kotlin_version = "1.3.72"
- repositories {
- google() // 保持Google Maven仓库
- // 添加阿里云的Google仓库镜像
- maven { url 'https://maven.aliyun.com/repository/google' }
- // 用于下载 kotlin-gradle-plugin
- maven { url 'https://maven.aliyun.com/repository/public'}
- // 用于下载 kotlin-gradle-plugin
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.0.1'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
-
- allprojects {
- repositories {
- // 同样添加阿里云的Google仓库镜像
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- google() // 在所有项目中也保持Google Maven仓库
- mavenCentral() // 保持Maven Central仓库
- }
- }
-
- task clean(type: Delete) {
- delete rootProject.buildDir
- }

- #Sat Jun 15 20:58:14 CST 2024
- distributionBase=GRADLE_USER_HOME
- distributionPath=wrapper/dists
- zipStoreBase=GRADLE_USER_HOME
- zipStorePath=wrapper/dists
- distributionUrl=file:///E:/download/gradle-6.1.1-all.zip
在 jdk 中
keytool -genkey -v -keystore test.keystore -alias test_name -keyalg RSA -keysize 2048 -validity 10000
输入对应信息即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。