Gradle Android Studio 中的问题
Gradle Issue in Android Studio
从 ionic 项目中提取 android 包,在 Android Studio 中打开它,
分布URL : https\://services.gradle.org/distributions/gradle-7.4-all.zip
内部项目级别build.gradle:类路径'com.android.tools.build:gradle:7.4'
里面 cash.properties : gradle.version=7.4
在 Android Studio 中出现以下错误:
失败:构建失败,出现异常。
- 出了什么问题:
配置根项目时出现问题 'android'。
Could not resolve all artifacts for configuration ':classpath'.
Could not find com.android.tools.build:gradle:7.4.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.4/gradle-7.4.pom
- https://jcenter.bintray.com/com/android/tools/build/gradle/7.4/gradle-7.4.pom
Required by:
project :
尝试:
运行 使用 --stacktrace 选项获取堆栈跟踪。 运行 使用 --info 或 --debug 选项以获得更多日志输出。 运行 使用 --scan 以获得完整的见解。
- 获取更多帮助
在 746 毫秒内构建失败
可能是什么问题?
据我所见here,Google maven 存储库中还没有 7.4 版。
您可以尝试定位较低版本(如 7.3.0-alpha05,如果您需要稳定版本,则为 7.1.2),并且不要忘记为您的 distributionUrl 设置相同的版本。
从 ionic 项目中提取 android 包,在 Android Studio 中打开它,
分布URL : https\://services.gradle.org/distributions/gradle-7.4-all.zip
内部项目级别build.gradle:类路径'com.android.tools.build:gradle:7.4'
里面 cash.properties : gradle.version=7.4
在 Android Studio 中出现以下错误:
失败:构建失败,出现异常。
- 出了什么问题: 配置根项目时出现问题 'android'。
Could not resolve all artifacts for configuration ':classpath'. Could not find com.android.tools.build:gradle:7.4. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.4/gradle-7.4.pom - https://jcenter.bintray.com/com/android/tools/build/gradle/7.4/gradle-7.4.pom Required by: project :
尝试: 运行 使用 --stacktrace 选项获取堆栈跟踪。 运行 使用 --info 或 --debug 选项以获得更多日志输出。 运行 使用 --scan 以获得完整的见解。
- 获取更多帮助
在 746 毫秒内构建失败
可能是什么问题?
据我所见here,Google maven 存储库中还没有 7.4 版。
您可以尝试定位较低版本(如 7.3.0-alpha05,如果您需要稳定版本,则为 7.1.2),并且不要忘记为您的 distributionUrl 设置相同的版本。